Class JamServiceImpl
- java.lang.Object
-
- org.apache.xmlbeans.impl.jam.internal.JamServiceImpl
-
- All Implemented Interfaces:
JamService
public class JamServiceImpl extends Object implements JamService
-
-
Constructor Summary
Constructors Constructor Description JamServiceImpl(ElementContext ctx, String[] classes)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JClass[]
getAllClasses()
Returns all of the JClasses returned by getClasses() in a single array.JamClassIterator
getClasses()
Returns an iterator of the JClasses named in the array returned by getClassNames().JamClassLoader
getClassLoader()
Returns a JamClassLoader which can be used to load JClasses from class- and source-file locations specified in the JamServiceParams with which this service was instantiated.String[]
getClassNames()
Returns the names of the classes that were described in the JamServiceParams object used to create this service.void
setClassNames(String[] names)
-
-
-
Constructor Detail
-
JamServiceImpl
public JamServiceImpl(ElementContext ctx, String[] classes)
-
-
Method Detail
-
getClassLoader
public JamClassLoader getClassLoader()
Description copied from interface:JamService
Returns a JamClassLoader which can be used to load JClasses from class- and source-file locations specified in the JamServiceParams with which this service was instantiated. Note that it is possible to use this mechanism to load JClasses that are not returned by getClasses().- Specified by:
getClassLoader
in interfaceJamService
-
getClassNames
public String[] getClassNames()
Description copied from interface:JamService
Returns the names of the classes that were described in the JamServiceParams object used to create this service. Note that this list will never change for a given service; though it is possible to use the service's JamClassLoader to load other types, this method will always return the initial set of classes.- Specified by:
getClassNames
in interfaceJamService
-
getClasses
public JamClassIterator getClasses()
Description copied from interface:JamService
Returns an iterator of the JClasses named in the array returned by getClassNames().- Specified by:
getClasses
in interfaceJamService
-
getAllClasses
public JClass[] getAllClasses()
Description copied from interface:JamService
Returns all of the JClasses returned by getClasses() in a single array. Use of this method (as opposed to getClasses()) is not advised if you expect to be dealing with a very large set of classes, as it makes it less likely that JClasses will be garbage collected when no longer needed.- Specified by:
getAllClasses
in interfaceJamService
-
setClassNames
public void setClassNames(String[] names)
-
-