org.datanucleus.enhancer.asm.method
Class JdoProvideFields
java.lang.Object
org.datanucleus.enhancer.ClassMethod
org.datanucleus.enhancer.asm.ASMClassMethod
org.datanucleus.enhancer.asm.method.JdoProvideFields
public class JdoProvideFields
- extends ASMClassMethod
Method to generate the method "jdoProvideFields" using ASM.
public final void jdoProvideFields(int[] fieldIds)
{
if (fieldIds == null)
throw new IllegalArgumentException("argment is null");
int i = fieldIds.length - 1;
if (i >= 0)
{
do
jdoProvideField(fieldIds[i]);
while (--i >= 0);
}
}
- Version:
- $Revision: 1.4 $
|
Constructor Summary |
JdoProvideFields(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 |
JdoProvideFields
public JdoProvideFields(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 JdoProvideFields 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.