Package com.sun.tools.xjc.api
Interface JAXBModel
-
- All Known Subinterfaces:
J2SJAXBModel
,S2JJAXBModel
public interface JAXBModel
The in-memory representation of the JAXB binding.- Author:
- Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.util.List<java.lang.String>
getClassList()
Deprecated.this method is provided for now to allow gradual migration for JAX-RPC.
-
-
-
Method Detail
-
getClassList
java.util.List<java.lang.String> getClassList()
Deprecated.this method is provided for now to allow gradual migration for JAX-RPC.Returns a list of fully-qualified class names, which should be used at the runtime to create a newJAXBContext
.Until the JAXB team fixes the bootstrapping issue, we have two bootstrapping methods. This one is to use a list of class names to call
JAXBContext.newInstance(Class[])
method. If this method returns non-null, the caller is expected to use that method. This is meant to be a temporary workaround.- Returns:
- non-null read-only list.
-
-