Searched defs:contextPath (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/runtime/
H A DJAXBContextFactory.java134 public static JAXBContext createContext( String contextPath, argument
138 StringTokenizer tokens = new StringTokenizer(contextPath,":");
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DJAXBContext.java67 * public static JAXBContext createContext( String contextPath, ClassLoader classLoader, Map<String,Object> properties ) throws JAXBException
105 * in the <tt>contextPath</tt>). Since each schema in the schema set can belong
109 * any of the schemas listed in the <tt>contextPath</tt>. For example:
116 * BazObject bazObj = (BazObject)u.unmarshal( new File( "baz.xml" ) ); // error, "com.acme.baz" not in contextPath
127 * java packages contained in the <tt>contextPath</tt>. For each schema
289 * <li>an ambiguity among global elements contained in the contextPath</li>
291 * <li>mixing schema derived packages from different providers on the same contextPath</li>
294 public static JAXBContext newInstance( String contextPath )
297 //return newInstance( contextPath, JAXBContext.class.getClassLoader() );
298 return newInstance( contextPath, Threa
392 newInstance( String contextPath, ClassLoader classLoader ) argument
428 newInstance( String contextPath, ClassLoader classLoader, Map<String,?> properties ) argument
[all...]
H A DContextFinder.java125 static JAXBContext newInstance( String contextPath, argument
132 return newInstance(contextPath, spFactory, classLoader, properties);
152 static JAXBContext newInstance( String contextPath, argument
172 context = m.invoke(null,contextPath,classLoader,properties);
182 context = m.invoke(null,contextPath,classLoader);
267 static JAXBContext find(String factoryId, String contextPath, ClassLoader classLoader, Map properties ) throws JAXBException { argument
275 StringTokenizer packages = new StringTokenizer( contextPath, ":" );
294 return newInstance( contextPath, factoryClassName, classLoader, properties );
306 return newInstance( contextPath, factoryClassName, classLoader, properties );
310 return newInstance( contextPath, factoryClassNam
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/
H A DContextFactory.java179 public static JAXBContext createContext( String contextPath, argument
182 StringTokenizer tokens = new StringTokenizer(contextPath,":");

Completed in 929 milliseconds