public class JdoReplaceField extends ClassMethod
public void jdoReplaceField(int fieldIndex)
{
if (jdoStateManager == null)
throw new IllegalStateException("state manager is null");
switch (fieldIndex)
{
case 0:
{
MyClass ref = this;
ref.param1 = (MyOtherClass) ref.jdoStateManager.replacingObjectField(this, fieldIndex);
break;
}
default:
throw new IllegalArgumentException("out of field index :" + fieldIndex);
}
}
or with superclass
public void jdoReplaceField(int fieldIndex)
{
if (jdoStateManager == null)
throw new IllegalStateException("state manager is null");
switch (fieldIndex - jdoInheritedFieldCount)
{
case 0:
{
MyClass ref = this;
ref.param1 = (MyOtherClass)ref.jdoStateManager.replacingStringField(this, fieldIndex);
break;
}
default:
super.jdoReplaceField(fieldIndex);
}
}
access, argNames, argTypes, enhancer, exceptions, LOCALISER, methodName, returnType, visitor| Constructor and Description |
|---|
JdoReplaceField(ClassEnhancer enhancer,
String name,
int access,
Object returnType,
Object[] argTypes,
String[] argNames)
Constructor.
|
| Modifier and Type | Method and Description |
|---|---|
void |
execute()
Method to add the contents of the class method.
|
static JdoReplaceField |
getInstance(ClassEnhancer enhancer) |
close, equals, getAccess, getClassEnhancer, getDescriptor, getMethodAdditionMessage, getName, getNamer, hashCode, initialise, initialisepublic JdoReplaceField(ClassEnhancer enhancer, String name, int access, Object returnType, Object[] argTypes, String[] argNames)
enhancer - ClassEnhancername - Name of methodaccess - Access typereturnType - Return typeargTypes - Argument typesargNames - Argument namespublic static JdoReplaceField getInstance(ClassEnhancer enhancer)
public void execute()
execute in class ClassMethodCopyright © 2013. All Rights Reserved.