Class Factories
- java.lang.Object
-
- com.sun.tools.corba.ee.idl.Factories
-
- com.sun.tools.corba.ee.idl.toJavaPortable.Factories
-
public class Factories extends Factories
-
-
Field Summary
Fields Modifier and Type Field Description private DefaultFactory
_defaultFactory
private Helper
_helper
private Holder
_holder
private Skeleton
_skeleton
private Stub
_stub
private ValueFactory
_valueFactory
(package private) static java.lang.String[]
keywords
-
Constructor Summary
Constructors Constructor Description Factories()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Arguments
arguments()
Return a subclass of the Arguments class.DefaultFactory
defaultFactory()
GenFactory
genFactory()
Return the implementation of the GenFactory interface.Helper
helper()
Holder
holder()
java.lang.String[]
languageKeywords()
Return the list of keywords in the generated language.Skeleton
skeleton()
Stub
stub()
ValueFactory
valueFactory()
-
Methods inherited from class com.sun.tools.corba.ee.idl.Factories
exprFactory, symtabFactory
-
-
-
-
Field Detail
-
keywords
static java.lang.String[] keywords
-
_helper
private Helper _helper
-
_valueFactory
private ValueFactory _valueFactory
-
_defaultFactory
private DefaultFactory _defaultFactory
-
_holder
private Holder _holder
-
_skeleton
private Skeleton _skeleton
-
_stub
private Stub _stub
-
-
Method Detail
-
genFactory
public GenFactory genFactory()
Description copied from class:Factories
Return the implementation of the GenFactory interface. If this returns null, then the compiler cannot generate anything.- Overrides:
genFactory
in classFactories
- Returns:
- null
-
arguments
public Arguments arguments()
Description copied from class:Factories
Return a subclass of the Arguments class. If this returns null, the default will be used.
-
languageKeywords
public java.lang.String[] languageKeywords()
Description copied from class:Factories
Return the list of keywords in the generated language. Note that these keywords may contain the following wildcards:- `*'
- matches zero or more characters
- `+'
- matches one or more characters
- `.'
- matches any single character
- Overrides:
languageKeywords
in classFactories
- Returns:
- an array of keywords
-
helper
public Helper helper()
-
valueFactory
public ValueFactory valueFactory()
-
defaultFactory
public DefaultFactory defaultFactory()
-
holder
public Holder holder()
-
skeleton
public Skeleton skeleton()
-
stub
public Stub stub()
-
-