Fields Summary |
---|
public int | accessThe method's access flags (see {@link oracle.toplink.libraries.asm.Constants}). This
field also indicates if the method is synthetic and/or deprecated. |
public String | nameThe method's name. |
public String | descThe method's descriptor (see {@link oracle.toplink.libraries.asm.Type Type}). |
public final List | exceptionsThe internal names of the method's exception classes (see {@link
oracle.toplink.libraries.asm.Type#getInternalName() getInternalName}). This list is a
list of {@link String} objects. |
public Attribute | attrsThe non standard attributes of the method. |
public final List | instructionsThe instructions of this method. This list is a list of {@link
AbstractInsnNode AbstractInsnNode} and {@link Label Label} objects. |
public final List | tryCatchBlocksThe try catch blocks of this method. This list is a list of {@link
TryCatchBlockNode TryCatchBlockNode} objects. |
public int | maxStackThe maximum stack size of this method. |
public int | maxLocalsThe maximum number of local variables of this method. |
public final List | localVariablesThe local variables of this method. This list is a list of {@link
LocalVariableNode LocalVariableNode} objects. |
public final List | lineNumbersThe line numbers of this method. This list is a list of {@link
LineNumberNode LineNumberNode} objects. |
public Attribute | codeAttrsThe non standard attributes of the method's code. |