?? taskstatustype.java
字號:
package com.ict.netcom2.task;
public class TaskStatusType {
/**
* 測試任務等待
*/
public static int TASK_READY = 0x00;
/**
* 測試任務執行
*/
public static int TASK_RUNNING = 0x01;
/**
* 已完成一次測試,主要針對端到端測試任務
*/
public static int TASK_ONCETEST = 0x02;
/**
* 測試任務被中止
*/
public static int TASK_STOPPED = 0x03;
/**
* 測試任務完成
*/
public static int TASK_COMPLETED = 0x04;
public static void main(String[] str) {
System.out.println(0xf);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -