📄 label.java
字号:
package gnu.kawa.models;/** A "label" may have some text and/or an icon. * It probably should be a combination of text and image. */public class Label extends Model implements Viewable, java.io.Serializable{ String text; public Label () { } public Label (String text) { this.text = text; } public void makeView (Display display, Object where) { display.addLabel(this, where); } public String getText() { return text; } public void setText (String text) { this.text = text; notifyListeners("text"); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -