constants.java

来自「《JSP网站开发典型模块与实例精讲》一书光盘源码」· Java 代码 · 共 21 行

JAVA
21
字号
package org.appfuse;


/**
 * Constant values used throughout the application.
 *
 * <p>
 * <a href="Constants.java.html"><i>View Source</i></a>
 * </p>
 *
 * @author <a href="mailto:matt@raibledesigns.com">Matt Raible</a>
 */
public class Constants {
    /** The name of the configuration hashmap stored in application scope. */
    public static final String CONFIG = "appConfig";
    public static final int DELETE = 1;
    public static final int UPDATE = 2;
    public static final int SELECT = 3;
    public static final int CREATE = 4;
}

⌨️ 快捷键说明

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