org.datanucleus.enhancer.asm.method
Class JdoGetManagedFieldCount
java.lang.Object
org.datanucleus.enhancer.ClassMethod
org.datanucleus.enhancer.asm.ASMClassMethod
org.datanucleus.enhancer.asm.method.JdoGetManagedFieldCount
public class JdoGetManagedFieldCount
- extends ASMClassMethod
Method to generate the method "jdoGetManagedFieldCount" using ASM.
- Version:
- $Revision: 1.5 $
|
Constructor Summary |
JdoGetManagedFieldCount(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 |
JdoGetManagedFieldCount
public JdoGetManagedFieldCount(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 JdoGetManagedFieldCount getInstance(ClassEnhancer enhancer)
execute
public void execute()
- Method to add the contents of the class method.
Usually this method should generate bytecode as:
return jdoFieldNames.length + superClass.jdoGetManagedFieldCount();
but due to initializing issues [ENHANCER-58], we use constants instead, e.g.:
return {number of managed fields}+superClass.jdoGetManagedFieldCount();
- Specified by:
execute in class ClassMethod
Copyright © 2009. All Rights Reserved.