Interface | Description |
---|---|
ClassDecorator |
Interface implemented by class construction decorators used during code generation.
|
NameConverter |
Interface for working with Java names during code generation.
|
Class | Description |
---|---|
CollectionMethodsDecorator |
Code generation decorator which adds
sizeXXX() , addXXX(YYY) getXXX(int) , and
clearXXX() methods for each collection value using a java.util.List representation. |
DefaultNameConverter |
Converter for working with Java names.
|
ExtensionDecorator |
Code generation decorator which matches on the generated class name, and when it finds a matching class it sets a
superclass.
|
ListImplementationDecorator |
Code generation decorator which changes the implementation class used for
java.util.List instances. |
NameMatchDecoratorBase |
Base class for decorators which match on the generated class name.
|
SerializableDecorator |
Code generation decorator which adds the
java.lang.Serializable interface to each class, and optionally
also adds a private static final long serialVersionUID value. |