toolprogressmonitor.java

来自「专业汽车级嵌入式操作系统OSEK的源代码」· Java 代码 · 共 33 行

JAVA
33
字号
package js.common;/** * Listener for progress of long running operations. */public interface ToolProgressMonitor{   /**    * Notification change of operation.    *     * @param message human readable description of current operation    */   public void operation (String message);   /**    * Notification about some progress information.    *     * @param message human readable message about progress    */   public void log (String message);   /**    * Notification about progress.    *     * @param int progress progress (0-1000)    */   public void progress (int progress);   /**    * Is tool canceled?.    */   public boolean isCanceled ();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?