com.alibaba.fastjson.asm
类 Label

java.lang.Object
  继承者 com.alibaba.fastjson.asm.Label

public class Label
extends Object

A label represents a position in the bytecode of a method. Labels are used for jump, goto, and switch instructions, and for try catch blocks. A label designates the instruction that is just after. Note however that there can be other elements between a label and the instruction it designates (such as other labels, stack map frames, line numbers, etc.).

作者:
Eric Bruneton

字段摘要
 Object info
          Field used to associate user information to a label.
 
构造方法摘要
Label()
          Constructs a new label.
 
方法摘要
 
从类 java.lang.Object 继承的方法
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

字段详细信息

info

public Object info
Field used to associate user information to a label. Warning: this field is used by the ASM tree package. In order to use it with the ASM tree package you must override the com.alibaba.fastjson.asm.tree.MethodNode#getLabelNode method.

构造方法详细信息

Label

public Label()
Constructs a new label.



Copyright © 2012-2014 Alibaba Group. All Rights Reserved.