Uses of Class
org.objectweb.asm.tree.LabelNode
Packages that use LabelNode
Package
Description
Provides an ASM visitor that constructs a tree representation of the
classes it visits.
-
Uses of LabelNode in org.objectweb.asm.tree
Fields in org.objectweb.asm.tree declared as LabelNodeModifier and TypeFieldDescriptionLookupSwitchInsnNode.dfltBeginning of the default handler block.TableSwitchInsnNode.dfltBeginning of the default handler block.LocalVariableNode.endThe last instruction corresponding to the scope of this local variable (exclusive).TryCatchBlockNode.endEnd of the exception handler's scope (exclusive).TryCatchBlockNode.handlerBeginning of the exception handler's code.JumpInsnNode.labelThe operand of this instruction.LineNumberNode.startThe first instruction corresponding to this line number.LocalVariableNode.startThe first instruction corresponding to the scope of this local variable (inclusive).TryCatchBlockNode.startBeginning of the exception handler's scope (inclusive).Methods in org.objectweb.asm.tree that return LabelNodeModifier and TypeMethodDescriptionprotected LabelNodeMethodNode.getLabelNode(Label l) Returns the LabelNode corresponding to the given Label.Constructors in org.objectweb.asm.tree with parameters of type LabelNodeModifierConstructorDescriptionJumpInsnNode(int opcode, LabelNode label) Constructs a newJumpInsnNode.LineNumberNode(int line, LabelNode start) Constructs a newLineNumberNode.LocalVariableNode(String name, String desc, String signature, LabelNode start, LabelNode end, int index) Constructs a newLocalVariableNode.LookupSwitchInsnNode(LabelNode dflt, int[] keys, LabelNode[] labels) Constructs a newLookupSwitchInsnNode.TableSwitchInsnNode(int min, int max, LabelNode dflt, LabelNode[] labels) Constructs a newTableSwitchInsnNode.TryCatchBlockNode(LabelNode start, LabelNode end, LabelNode handler, String type) Constructs a newTryCatchBlockNode.