📄 istate.java
字号:
package org.speedframework.message.state;
/**
* 接口描述信息,描述接口的主要职责和用处。
*
*
* @version $LastChangedRevision: 1945 $, 2007.09.29 at 02:14:20 CST
* @author <a href="mailto:falcon8848@gmail.com">piginzoo </a>
*/
public interface IState
{
/** 属性描述信息 */
public static final int FINISH = 2;
/** 属性描述信息 */
public static final int INITIALIZATION = 0;
/** 属性描述信息 */
public static final int PROCESSING = 1;
/**
* 方法描述信息,
* 描述方法是做什么的,
* 如何调用,最好给出调用代码示例。
*
* @return
*/
public int getState();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -