📄 asmlabel.java
字号:
// $Id: ASMLabel.java,v 1.4 1999/11/04 16:53:40 deberg Exp $package java6035.tools.ASM;/** * ASMLabel represents an label in the assembly. */public class ASMLabel extends ASMEntry{ protected int asmkind() { return ASMLABEL; } /** the label */ public String label; public ASMLabel(String l) { if (l == null) throw new ASMException ("ASMLabel: in constructor: label l must not be null"); this.label = l; } /** Return the label */ public String toString() { return label; } /** Returns true if two labels are the same */ public boolean equals(Object o) { if (o instanceof ASMLabel && ((ASMLabel)o).label.equals(label)) return true; return false; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -