exportmodule.java

来自「eclipse平台的CDT项目3.0版本的源代码」· Java 代码 · 共 32 行

JAVA
32
字号
//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);
}

⌨️ 快捷键说明

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