org.datanucleus.enhancer.asm.method
Class JdoGetVersion
java.lang.Object
org.datanucleus.enhancer.ClassMethod
org.datanucleus.enhancer.asm.ASMClassMethod
org.datanucleus.enhancer.asm.method.JdoGetVersion
public class JdoGetVersion
- extends ASMClassMethod
Method to generate the method "jdoGetVersion" using ASM.
public final Object jdoGetVersion()
{
if (jdoStateManager != null)
return jdoStateManager.getVersion(this);
if (this.jdoIsDetached() != true)
return null;
return jdoDetachedState[1];
}
or (when not Detachable)
public final Object jdoGetVersion()
{
if (jdoStateManager != null)
return jdoStateManager.getVersion(this);
return null;
}
- Version:
- $Revision: 1.9 $
|
Constructor Summary |
JdoGetVersion(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 |
JdoGetVersion
public JdoGetVersion(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 JdoGetVersion getInstance(ClassEnhancer 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.