Lines Matching refs:JAXBContext

38  * The <tt>JAXBContext</tt> class provides the client's entry point to the
48 * <li>{@link #newInstance(String,ClassLoader) JAXBContext.newInstance( "com.acme.foo:com.acme.bar" )} <br/>
49 * The JAXBContext instance is initialized from a list of colon
55 * <li>{@link #newInstance(Class...) JAXBContext.newInstance( com.acme.foo.Foo.class )} <br/>
56 * The JAXBContext instance is intialized with class(es)
67 * public static JAXBContext createContext( String contextPath, ClassLoader classLoader, Map&lt;String,Object> properties ) throws JAXBException
68 * public static JAXBContext createContext( Class[] classes, Map&lt;String,Object> properties ) throws JAXBException
82 * <tt>javax.xml.bind.JAXBContext</tt>, it simply has to provide a class that
103 * The <tt>JAXBContext</tt> object
112 * JAXBContext jc = JAXBContext.newInstance( "com.acme.foo:com.acme.bar" );
173 * JAXBContext jc = JAXBContext.newInstance( "com.acme.foo" );
204 * client application must not attempt to mix runtime objects (<tt>JAXBContext,
237 * Look for <tt>/META-INF/services/javax.xml.bind.JAXBContext</tt> file in the associated classloader.
250 * <tt>public static JAXBContext createContext(String,ClassLoader,Map)</tt> method
252 * or <tt>public static JAXBContext createContet(Class[],Map)</tt> method
254 * to create a {@link JAXBContext}.
262 public abstract class JAXBContext {
266 * of creating new <tt>JAXBContext</tt> objects.
272 protected JAXBContext() {
278 * Obtain a new instance of a <tt>JAXBContext</tt> class.
286 * <tt>JAXBContext</tt> such as
294 public static JAXBContext newInstance( String contextPath )
297 //return newInstance( contextPath, JAXBContext.class.getClassLoader() );
303 * Obtain a new instance of a <tt>JAXBContext</tt> class.
310 * code is registered with the JAXBContext by the
339 * listed classes are also registered with JAXBContext.
382 * @return a new instance of a <tt>JAXBContext</tt>
384 * <tt>JAXBContext</tt> such as
392 public static JAXBContext newInstance( String contextPath, ClassLoader classLoader ) throws JAXBException {
399 * Obtain a new instance of a <tt>JAXBContext</tt> class.
402 * This is mostly the same as {@link JAXBContext#newInstance(String, ClassLoader)},
404 * the instantiation of {@link JAXBContext}.
417 * @return a new instance of a <tt>JAXBContext</tt>
419 * <tt>JAXBContext</tt> such as
428 public static JAXBContext newInstance( String contextPath, ClassLoader classLoader, Map<String,?> properties )
446 // * Obtain a new instance of a <tt>JAXBContext</tt> class.
457 // * <tt>newInstance(Foo.class)</tt>, the newly created {@link JAXBContext}
477 // * list of java classes to be recognized by the new {@link JAXBContext}.
478 // * Can be empty, in which case a {@link JAXBContext} that only knows about
482 // * A new instance of a <tt>JAXBContext</tt>. Always non-null valid object.
486 // * <tt>JAXBContext</tt>, such as (but not limited to):
502 // public static JAXBContext newInstance( Source[] externalBindings, Class... classesToBeBound )
520 * Obtain a new instance of a <tt>JAXBContext</tt> class.
530 * are not registered with JAXBContext.
533 * <tt>newInstance(Foo.class)</tt>, the newly created {@link JAXBContext}
549 * Note that for each java package registered with JAXBContext,
557 * list of java classes to be recognized by the new {@link JAXBContext}.
558 * Can be empty, in which case a {@link JAXBContext} that only knows about
562 * A new instance of a <tt>JAXBContext</tt>. Always non-null valid object.
566 * <tt>JAXBContext</tt>, such as (but not limited to):
581 public static JAXBContext newInstance( Class... classesToBeBound )
589 * Obtain a new instance of a <tt>JAXBContext</tt> class.
592 * An overloading of {@link JAXBContext#newInstance(Class...)}
593 * to configure 'properties' for this instantiation of {@link JAXBContext}.
600 * list of java classes to be recognized by the new {@link JAXBContext}.
601 * Can be empty, in which case a {@link JAXBContext} that only knows about
608 * A new instance of a <tt>JAXBContext</tt>. Always non-null valid object.
612 * <tt>JAXBContext</tt>, such as (but not limited to):
627 public static JAXBContext newInstance( Class[] classesToBeBound, Map<String,?> properties )