Serializable
, Comparable<ImplStructureStrategy>
public enum ImplStructureStrategy extends 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 | Description |
---|---|---|
static class |
ImplStructureStrategy.Result |
Enum Constant | 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 | 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 JPackage |
getPackage(JPackage pkg,
Aspect a) |
Gets the specified aspect of the given package.
|
static ImplStructureStrategy |
valueOf(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(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullprotected abstract ImplStructureStrategy.Result createClasses(Outline outline, CClassInfo bean)
protected abstract JPackage getPackage(JPackage pkg, Aspect a)
protected abstract MethodWriter createMethodWriter(ClassOutlineImpl target)
protected abstract void _extends(ClassOutlineImpl derived, ClassOutlineImpl base)
Copyright © 2018 Oracle Corporation. All rights reserved.