org.datanucleus.enhancer.asm.method
Class JdoCopyField
java.lang.Object
org.datanucleus.enhancer.ClassMethod
org.datanucleus.enhancer.asm.ASMClassMethod
org.datanucleus.enhancer.asm.method.JdoCopyField
public class JdoCopyField
- extends ASMClassMethod
Method to generate the method "jdoCopyField" using ASM.
protected final void jdoCopyField(Answer obj, int index)
{
switch (index)
{
case 0:
question = obj.question;
break;
default:
throw new IllegalArgumentException("out of field index :" + index);
}
}
or with superclass
protected final void jdoCopyField(ComplexAnswer obj, int index)
{
switch (index - jdoInheritedFieldCount)
{
case 0:
param1 = obj.param1;
break;
case 1:
param2 = obj.param2;
break;
default:
super.jdoCopyField(obj, index);
}
}
and also with minor variations if the class has no fields
|
Constructor Summary |
JdoCopyField(ClassEnhancer enhancer,
java.lang.String name,
int access,
java.lang.Object returnType,
java.lang.Object[] argTypes,
java.lang.String[] argNames)
Constructor. |
| Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
JdoCopyField
public JdoCopyField(ClassEnhancer enhancer,
java.lang.String name,
int access,
java.lang.Object returnType,
java.lang.Object[] argTypes,
java.lang.String[] argNames)
- Constructor.
- Parameters:
enhancer - ClassEnhancername - Name of methodaccess - Access typereturnType - Return typeargTypes - Argument typesargNames - Argument names
getInstance
public static JdoCopyField getInstance(ASMClassEnhancer enhancer)
execute
public void execute()
- Method to add the contents of the class method.
- Specified by:
execute in class ClassMethod
Copyright © 2011. All Rights Reserved.