org.datanucleus.enhancer.asm.method
Class JdoIsDetached
java.lang.Object
org.datanucleus.enhancer.ClassMethod
org.datanucleus.enhancer.asm.ASMClassMethod
org.datanucleus.enhancer.asm.method.JdoIsDetached
public class JdoIsDetached
- extends ASMClassMethod
Method to generate the method "jdoIsDetached" using ASM.
public boolean jdoIsDetached()
{
if (jdoStateManager == null && jdoDetachedState != null)
{
return true;
}
return false;
}
and if not detachable will get
public boolean jdoIsDetached()
{
return false;
}
- Version:
- $Revision: 1.5 $
|
Constructor Summary |
JdoIsDetached(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 |
JdoIsDetached
public JdoIsDetached(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 JdoIsDetached 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.