⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 label.java

📁 A framework written in Java for implementing high-level and dynamic languages, compiling them into J
💻 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 + -