📄 gp_state.java
字号:
public class GP_State
{
public static final int IDLE = 0;
public static final int STARTED = 1;
public static final int STOPPED = 2;
private int state = IDLE;
//返回运行状态
public int getState()
{
return state;
}
public void setState(int state)
{
this.state=state;
}
public GP_State()
{
this(IDLE);
}
public GP_State(int state)
{
this.state=state;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -