itasklistviewer.java
来自「用java 实现的IE browser适合于学者」· Java 代码 · 共 35 行
JAVA
35 行
package com.hnjchina.example.tableviewer;
/*
* (c) Copyright Mirasol Op'nWorks Inc. 2002, 2003.
* http://www.opnworks.com
* Created on Jun 11, 2003 by lgauthier@opnworks.com
*
*/
public interface ITaskListViewer {
/**
* Update the view to reflect the fact that a task was added
* to the task list
*
* @param task
*/
public void addTask(ExampleTask task);
/**
* Update the view to reflect the fact that a task was removed
* from the task list
*
* @param task
*/
public void removeTask(ExampleTask task);
/**
* Update the view to reflect the fact that one of the tasks
* was modified
*
* @param task
*/
public void updateTask(ExampleTask task);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?