public class JdoCopyFields extends ClassMethod
public void jdoCopyFields(Object obj, int[] fieldNumbers) { if (jdoStateManager == null) throw new IllegalStateException("state manager is null"); if (fieldNumbers == null) throw new IllegalStateException("fieldNumbers is null"); if (!(obj instanceof Answer)) throw new IllegalArgumentException ("object is not an object of type mydomain.MyClass"); MyClass other = (MyClass) obj; if (jdoStateManager != other.jdoStateManager) throw new IllegalArgumentException("state managers do not match"); int i = fieldNumbers.length - 1; if (i >= 0) { do jdoCopyField(other, fieldNumbers[i]); while (--i >= 0); } }
access, argNames, argTypes, enhancer, exceptions, LOCALISER, methodName, returnType, visitor
Constructor and Description |
---|
JdoCopyFields(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 JdoCopyFields |
getInstance(ClassEnhancer enhancer) |
close, equals, getAccess, getClassEnhancer, getDescriptor, getMethodAdditionMessage, getName, getNamer, hashCode, initialise, initialise
public JdoCopyFields(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 JdoCopyFields getInstance(ClassEnhancer enhancer)
public void execute()
execute
in class ClassMethod
Copyright © 2021. All rights reserved.