configitem.java

来自「pojo的mvc框架」· Java 代码 · 共 38 行

JAVA
38
字号
package xyz.frame.config;import xyz.frame.webapp.DefaultWebApplication;/** * A configuration item *  * @author Guilherme Silveira */public interface ConfigItem {	/**	 * Registers itself in the web application	 * 	 * @param application	 *            the application	 * @throws ConfigException	 *             configuration exception	 */	public void register(DefaultWebApplication application)			throws ConfigException;	/**	 * Returns true if this is a component, factory or converter	 * 	 * @return true or false	 */	public boolean isComponent();	/**	 * Returns true if this is a manager configuration	 * 	 * @return true or false	 */	public boolean isManager();}

⌨️ 快捷键说明

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