Uses of Class
com.uwyn.rife.continuations.asm.Label

Packages that use Label
com.uwyn.rife.continuations.asm Provides a small and fast bytecode manipulation framework. 
com.uwyn.rife.continuations.asm.attrs Provides an implementation for optional class, field and method attributes. 
 

Uses of Label in com.uwyn.rife.continuations.asm
 

Methods in com.uwyn.rife.continuations.asm that return Label
protected  Label[] Attribute.getLabels()
          Returns the labels corresponding to this attribute.
 

Methods in com.uwyn.rife.continuations.asm with parameters of type Label
 void MethodVisitor.visitJumpInsn(int opcode, Label label)
          Visits a jump instruction.
 void MethodVisitor.visitLabel(Label label)
          Visits a label.
 void MethodVisitor.visitTableSwitchInsn(int min, int max, Label dflt, Label[] labels)
          Visits a TABLESWITCH instruction.
 void MethodVisitor.visitLookupSwitchInsn(Label dflt, int[] keys, Label[] labels)
          Visits a LOOKUPSWITCH instruction.
 void MethodVisitor.visitTryCatchBlock(Label start, Label end, Label handler, String type)
          Visits a try catch block.
 void MethodVisitor.visitLocalVariable(String name, String desc, String signature, Label start, Label end, int index)
          Visits a local variable declaration.
 void MethodVisitor.visitLineNumber(int line, Label start)
          Visits a line number declaration.
 void MethodAdapter.visitJumpInsn(int opcode, Label label)
           
 void MethodAdapter.visitLabel(Label label)
           
 void MethodAdapter.visitTableSwitchInsn(int min, int max, Label dflt, Label[] labels)
           
 void MethodAdapter.visitLookupSwitchInsn(Label dflt, int[] keys, Label[] labels)
           
 void MethodAdapter.visitTryCatchBlock(Label start, Label end, Label handler, String type)
           
 void MethodAdapter.visitLocalVariable(String name, String desc, String signature, Label start, Label end, int index)
           
 void MethodAdapter.visitLineNumber(int line, Label start)
           
protected  Attribute Attribute.read(ClassReader cr, int off, int len, char[] buf, int codeOff, Label[] labels)
          Reads a type attribute.
 

Uses of Label in com.uwyn.rife.continuations.asm.attrs
 

Fields in com.uwyn.rife.continuations.asm.attrs declared as Label
 Label StackMapFrame.label
           
 

Methods in com.uwyn.rife.continuations.asm.attrs that return Label
 Label StackMapType.getLabel()
           
protected  Label[] StackMapAttribute.getLabels()
           
 

Methods in com.uwyn.rife.continuations.asm.attrs with parameters of type Label
 void StackMapType.setLabel(Label offset)
           
 int StackMapFrame.read(ClassReader cr, int off, char[] buf, int codeOff, Label[] labels)
           
 StackMapFrame StackMapAttribute.getFrame(Label label)
           
protected  Attribute StackMapAttribute.read(ClassReader cr, int off, int len, char[] buf, int codeOff, Label[] labels)
           
 


RIFE Project Page