public class IsDirty extends ClassMethod
public final boolean dnIsDirty() { if (dnStateManager != null) return dnStateManager.isDirty(this); if (this.dnIsDetached() != true) return false; if (((BitSet) dnDetachedState[3]).length() ≤ 0) return false; return true; }or if not detachable
public final boolean dnIsDirty() { if (dnStateManager != null) return dnStateManager.isDirty(this); return true; }
access, argNames, argTypes, enhancer, exceptions, methodName, returnType, visitor
Constructor and Description |
---|
IsDirty(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 IsDirty |
getInstance(ClassEnhancer enhancer) |
close, equals, getAccess, getClassEnhancer, getDescriptor, getMethodAdditionMessage, getName, getNamer, hashCode, initialise, initialise
public IsDirty(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 IsDirty getInstance(ClassEnhancer enhancer)
public void execute()
execute
in class ClassMethod
Copyright © 2019. All rights reserved.