public enum ImplStructureStrategy extends java.lang.Enum<ImplStructureStrategy>
The actual implementations of this interface is tightly coupled with the backend, but the front-end gets to choose which strategy to be used.
Modifier and Type | Class and Description |
---|---|
static class |
ImplStructureStrategy.Result |
Enum Constant and Description |
---|
BEAN_ONLY
Generates beans only.
|
INTF_AND_IMPL
Generates the interfaces to describe beans (content interfaces)
and then the beans themselves in a hidden impl package.
|
Modifier and Type | Method and Description |
---|---|
protected abstract void |
_extends(ClassOutlineImpl derived,
ClassOutlineImpl base)
Sets up an inheritance relationship.
|
protected abstract ImplStructureStrategy.Result |
createClasses(Outline outline,
CClassInfo bean)
Creates class(es) for the given bean.
|
protected abstract MethodWriter |
createMethodWriter(ClassOutlineImpl target) |
protected abstract com.sun.codemodel.JPackage |
getPackage(com.sun.codemodel.JPackage pkg,
Aspect a)
Gets the specified aspect of the given package.
|
static ImplStructureStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ImplStructureStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImplStructureStrategy BEAN_ONLY
public static final ImplStructureStrategy INTF_AND_IMPL
public static ImplStructureStrategy[] values()
for (ImplStructureStrategy c : ImplStructureStrategy.values()) System.out.println(c);
public static ImplStructureStrategy valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullprotected abstract ImplStructureStrategy.Result createClasses(Outline outline, CClassInfo bean)
protected abstract com.sun.codemodel.JPackage getPackage(com.sun.codemodel.JPackage pkg, Aspect a)
protected abstract MethodWriter createMethodWriter(ClassOutlineImpl target)
protected abstract void _extends(ClassOutlineImpl derived, ClassOutlineImpl base)