public class DynamicClassWriter extends java.lang.Object implements EclipseLinkClassWriter
The intent is to provide a common writer for dynamic JPA entities but also allow for subclasses of this to be used in more complex writing situations such as SDO and DBWS.
Instances of this class and any subclasses are maintained within the DynamicClassLoader.getClassWriters()
and DynamicClassLoader.defaultWriter
for the life of the class loader so it is important that no unnecessary state be maintained that may effect memory usage.
Modifier and Type | Field and Description |
---|---|
static int[] |
ICONST |
Constructor and Description |
---|
DynamicClassWriter() |
DynamicClassWriter(java.lang.Class<?> parentClass) |
DynamicClassWriter(java.lang.String parentClassName)
Create using a loader and class name so that the parent class can be lazily loaded when the writer is used to generate a dynamic class.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Class<?> |
getParentClass() |
java.lang.String |
getParentClassName() |
boolean |
isCompatible(EclipseLinkClassWriter writer)
Verify that the provided writer is compatible with the current writer.
|
java.lang.String |
toString() |
byte[] |
writeClass(DynamicClassLoader loader, java.lang.String className) |
public DynamicClassWriter()
public DynamicClassWriter(java.lang.Class<?> parentClass)
public DynamicClassWriter(java.lang.String parentClassName)
The loader must not be null and the parentClassName must not be null and not an empty String. The parentClassName will be converted to a class using the provided loader lazily.
public java.lang.Class<?> getParentClass()
getParentClass
in interface EclipseLinkClassWriter
public java.lang.String getParentClassName()
getParentClassName
in interface EclipseLinkClassWriter
public byte[] writeClass(DynamicClassLoader loader, java.lang.String className) throws java.lang.ClassNotFoundException
writeClass
in interface EclipseLinkClassWriter
java.lang.ClassNotFoundException
public boolean isCompatible(EclipseLinkClassWriter writer)
Used in DynamicClassLoader#addClass(String, DynamicClassWriter)
to verify if a duplicate request of the same className can proceed and return the same class that may already exist.
isCompatible
in interface EclipseLinkClassWriter
public java.lang.String toString()
toString
in class java.lang.Object