📄 configitem.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -