com.sun.tools.xjc.generator.bean
Enum ImplStructureStrategy

java.lang.Object
  extended by java.lang.Enum<ImplStructureStrategy>
      extended by com.sun.tools.xjc.generator.bean.ImplStructureStrategy
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ImplStructureStrategy>

public enum ImplStructureStrategy
extends java.lang.Enum<ImplStructureStrategy>

Decides how a bean token is mapped to the generated classes.

The actual implementations of this interface is tightly coupled with the backend, but the front-end gets to choose which strategy to be used.


Nested Class Summary
static class ImplStructureStrategy.Result
           
 
Enum Constant Summary
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.
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

BEAN_ONLY

public static final ImplStructureStrategy BEAN_ONLY
Generates beans only. The simplest code generation.


INTF_AND_IMPL

public static final ImplStructureStrategy INTF_AND_IMPL
Generates the interfaces to describe beans (content interfaces) and then the beans themselves in a hidden impl package. Similar to JAXB 1.0.

Method Detail

values

public static ImplStructureStrategy[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (ImplStructureStrategy c : ImplStructureStrategy.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ImplStructureStrategy valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

createClasses

protected abstract ImplStructureStrategy.Result createClasses(Outline outline,
                                                              CClassInfo bean)
Creates class(es) for the given bean.


getPackage

protected abstract com.sun.codemodel.JPackage getPackage(com.sun.codemodel.JPackage pkg,
                                                         Aspect a)
Gets the specified aspect of the given package.


createMethodWriter

protected abstract MethodWriter createMethodWriter(ClassOutlineImpl target)

_extends

protected abstract void _extends(ClassOutlineImpl derived,
                                 ClassOutlineImpl base)
Sets up an inheritance relationship.