webapplication.java

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

JAVA
68
字号
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 + =
减小字号Ctrl + -
显示快捷键?