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

📄 index.java

📁 Java开的发文件管理系统,可以管理整个服务器的文件,并按要求进行处理!
💻 JAVA
字号:
/** *  */package pagecode.article;import java.util.List;import javax.faces.component.html.HtmlForm;import pagecode.PageCodeBase;import com.ibm.faces.component.html.HtmlScriptCollector;import javax.faces.component.html.HtmlOutputText;import com.ibm.faces.component.html.HtmlOutputLinkEx;/** * @author Kyle *  */public class Index extends PageCodeBase {	protected HtmlScriptCollector scriptCollector1;	protected HtmlForm form1;	protected List tasks = null;	protected HtmlOutputText text2;	protected HtmlOutputLinkEx linkEx2;	protected HtmlOutputText text1;	protected HtmlOutputLinkEx linkEx1;	//	protected HtmlScriptCollector getScriptCollector1() {		if (scriptCollector1 == null) {			scriptCollector1 = (HtmlScriptCollector) findComponentInRoot("scriptCollector1");		}		return scriptCollector1;	}	protected HtmlForm getForm1() {		if (form1 == null) {			form1 = (HtmlForm) findComponentInRoot("form1");		}		return form1;	}	/**	 * @return the tasks	 */	public List getTasks() {		return tasks;	}	/**	 * @param tasks	 *            the tasks to set	 */	public void setTasks(List tasks) {		this.tasks = tasks;	}	protected HtmlOutputText getText2() {		if (text2 == null) {			text2 = (HtmlOutputText) findComponentInRoot("text2");		}		return text2;	}	protected HtmlOutputLinkEx getLinkEx2() {		if (linkEx2 == null) {			linkEx2 = (HtmlOutputLinkEx) findComponentInRoot("linkEx2");		}		return linkEx2;	}	protected HtmlOutputText getText1() {		if (text1 == null) {			text1 = (HtmlOutputText) findComponentInRoot("text1");		}		return text1;	}	protected HtmlOutputLinkEx getLinkEx1() {		if (linkEx1 == null) {			linkEx1 = (HtmlOutputLinkEx) findComponentInRoot("linkEx1");		}		return linkEx1;	}}

⌨️ 快捷键说明

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