📄 styleevent.java~2~
字号:
package javabeantestapp;import java.util.*;/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2003</p> * <p>Company: </p> * @author not attributable * @version 1.0 */public class StyleEvent extends EventObject { public StyleEvent(Object source) { super(source); } private int newStyle; private int oldStyle; public int getNewStyle() { return newStyle; } public void setNewStyle(int newStyle) { this.newStyle = newStyle; } public void setOldStyle(int oldStyle) { this.oldStyle = oldStyle; } public int getOldStyle() { return oldStyle; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -