stateswitch.java
来自「1 系统简介 1.1 系统名称:bugtrail 1.2 适用范围:大型或小」· Java 代码 · 共 43 行
JAVA
43 行
/*
* StateSwitch.java
*
* Created on 2006年12月17日, 下午7:27
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package bugtrail.basic;
/**
*
* @author DengDong
*/
public class StateSwitch {
private int from;
private int to;
/** Creates a new instance of StateSwitch */
public StateSwitch(int from,int to) {
this.from = from;
this.to = to;
}
public int getFrom() {
return from;
}
public int getTo() {
return to;
}
public void setFrom(int from) {
this.from = from;
}
public void setTo(int to) {
this.to = to;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?