fbskeys.java
来自「Oracle的J2EE Sample」· Java 代码 · 共 41 行
JAVA
41 行
/*
* @author : Umesh Kulkarni
* @version 1.0
*
* Development Environment : Oracle9i JDeveloper
* Name of the File : FBSKeys.java
* Creation / Modification History :
* Umesh 26-Apr-2002 Created
*
*/
package oracle.otnsamples.ibfbs.control;
/**
* This Class holds the Constant Values of some of the generic parameters used
* for MVC (Model View Controller) Architecture. Please see ControllerServlet.java,
* RequestProcessor.java and ViewManager.java for more information.
*
* @version 1.0
* @since 1.0
*/
public interface FBSKeys {
/** Parameter constant for URL Mappings */
public static final String URLMAPPINGS = "URLMAPPINGS";
/** Parameter constant for Request Processor */
public static final String REQUESTPROCESSOR = "REQUESTPROCESSOR";
/** Parameter constant for View Manager */
public static final String VIEWMANAGER = "VIEWMANAGER";
/** Parameter constant for Exception Mappings */
public static final String EXCEPTIONMAPPINGS = "EXCEPTIONMAPPINGS";
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?