public class ProvideField extends ClassMethod
public void dnProvideField(int fieldIndex) { if (dnStateManager == null) throw new IllegalStateException("state manager is null"); switch (fieldIndex) { case 0: dnStateManager.providedObjectField(this, fieldIndex, question); break; default: throw new IllegalArgumentException("out of field index :" + fieldIndex); } }and with a superclass
public void dnProvideField(int fieldIndex) { if (dnStateManager == null) throw new IllegalStateException("state manager is null"); switch (fieldIndex - dnInheritedFieldCount) { case 0: dnStateManager.providedStringField(this, fieldIndex, extraInfo); break; default: super.dnProvideField(fieldIndex); } }with further minor changes when the class has no fields.
access, argNames, argTypes, enhancer, exceptions, methodName, returnType, visitor
Constructor and Description |
---|
ProvideField(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 ProvideField |
getInstance(ClassEnhancer enhancer) |
close, equals, getAccess, getClassEnhancer, getDescriptor, getMethodAdditionMessage, getName, getNamer, hashCode, initialise, initialise
public ProvideField(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 ProvideField getInstance(ClassEnhancer enhancer)
public void execute()
execute
in class ClassMethod
Copyright © 2019. All rights reserved.