?? exportmodule.java
字號:
//Title: Curriculum Development Tool
//Copyright: Copyright (c) 2001
//Author: David Bradford - dbrad@medstat.med.utah.edu
//Company: Knowledge Weavers - http://medstat.med.utah.edu/kw/
//File: projects/export/additions/ExportModule.java
//Description: An interface that will provide a framework for items that
// can be added to a web page EX search page or feedback
package cdt.projects.export.additions;
/**
* This class is used to add pages to the project that are dynamically created with user input.
*
* @version 1.0
* @author David Bradford
*/
public interface ExportModule {
/**
* This gets the code for the dynamic page.
*
* @return code for page.
*/
public String getPage();
/**
* This gives the module information about what to put on the page.
*
* @param title title of information.
* @param item actual information.
*/
public void addInfo(String title, Object item);
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -