org.datanucleus.enhancer.asm.method
Class JdoSuperClone
java.lang.Object
org.datanucleus.enhancer.ClassMethod
org.datanucleus.enhancer.asm.ASMClassMethod
org.datanucleus.enhancer.asm.method.JdoSuperClone
public class JdoSuperClone
- extends ASMClassMethod
Method to generate the method "jdoSuperClone" using ASM.
private Object jdoSuperClone() throws CloneNotSupportedException
{
MyClass o = (MyClass) super.clone();
o.jdoFlags = (byte) 0;
o.jdoStateManager = null;
return o;
}
- Version:
- $Revision: 1.5 $
|
Constructor Summary |
JdoSuperClone(ClassEnhancer enhancer,
java.lang.String name,
int access,
java.lang.Object returnType,
java.lang.Object[] argTypes,
java.lang.String[] argNames,
java.lang.String[] exceptions)
Constructor. |
| Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
JdoSuperClone
public JdoSuperClone(ClassEnhancer enhancer,
java.lang.String name,
int access,
java.lang.Object returnType,
java.lang.Object[] argTypes,
java.lang.String[] argNames,
java.lang.String[] exceptions)
- Constructor.
- Parameters:
enhancer - ClassEnhancername - Name of methodaccess - Access typereturnType - Return typeargTypes - Argument typesargNames - Argument names
getInstance
public static JdoSuperClone getInstance(ClassEnhancer enhancer)
execute
public void execute()
- Method to add the contents of the class method.
- Specified by:
execute in class ClassMethod
Copyright © 2009. All Rights Reserved.