📄 webapplication.java
字号:
package xyz.frame.webapp;import xyz.frame.component.ComponentManager;import xyz.frame.config.ConfigException;import xyz.frame.converter.ConverterManager;import xyz.frame.factory.FactoryManager;import xyz.frame.url.URLManager;import xyz.frame.view.ViewManager;/** * A web application * * @author Guilherme Silveira */public interface WebApplication { /** * Returns the url manager * * @return the url manager */ public URLManager getURLManager(); /** * Initializes the web application * * @throws ConfigException * */ public void init() throws ConfigException; /** * Returns the factory manager * * @return the factory manager */ public FactoryManager getFactoryManager(); /** * Returns the component manager * * @return the component manager */ public ComponentManager getComponentManager(); /** * Returns the view manager * * @return the view manager */ public ViewManager getViewManager(); /** * Returns the converter manager * * @return the converter manager */ public ConverterManager getConverterManager(); /** * Returns the plugin manager * * @return the plugin manager */ public PluginManager getPluginManager();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -