public class JdoProvideField extends ClassMethod
public void jdoProvideField(int fieldIndex)
{
if (jdoStateManager == null)
throw new IllegalStateException("state manager is null");
switch (fieldIndex)
{
case 0:
jdoStateManager.providedObjectField(this, fieldIndex, question);
break;
default:
throw new IllegalArgumentException("out of field index :" + fieldIndex);
}
}
and with a superclass
public void jdoProvideField(int fieldIndex)
{
if (jdoStateManager == null)
throw new IllegalStateException("state manager is null");
switch (fieldIndex - jdoInheritedFieldCount)
{
case 0:
jdoStateManager.providedStringField(this, fieldIndex, extraInfo);
break;
default:
super.jdoProvideField(fieldIndex);
}
}
with further minor changes when the class has no fields.access, argNames, argTypes, enhancer, exceptions, LOCALISER, methodName, returnType, visitor| Constructor and Description |
|---|
JdoProvideField(ClassEnhancer enhancer,
String name,
int access,
Object returnType,
Object[] argTypes,
String[] argNames)
Constructor.
|
| Modifier and Type | Method and Description |
|---|---|
void |
execute()
Method to add the contents of the class method.
|
static JdoProvideField |
getInstance(ClassEnhancer enhancer) |
close, equals, getAccess, getClassEnhancer, getDescriptor, getMethodAdditionMessage, getName, getNamer, hashCode, initialise, initialisepublic JdoProvideField(ClassEnhancer enhancer, String name, int access, Object returnType, Object[] argTypes, String[] argNames)
enhancer - ClassEnhancername - Name of methodaccess - Access typereturnType - Return typeargTypes - Argument typesargNames - Argument namespublic static JdoProvideField getInstance(ClassEnhancer enhancer)
public void execute()
execute in class ClassMethodCopyright © 2013. All Rights Reserved.