⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 exportmodule.java

📁 eclipse平台的CDT项目3.0版本的源代码
💻 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);
}

⌨️ 快捷键说明

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