nameconstants.java

来自「Java的框架」· Java 代码 · 共 36 行

JAVA
36
字号
package mcaps.apps.prrm.task.util;


/**
 * A collection of constants used in the task module
 * 
 * @author jov
 * @date 11-Nov-2005
 * @version 1.0.1.0
 */
public class NameConstants {

	/**
   * The request scope attribute that holds the task list
   */
  public static final String TASK_LIST = "taskList";
  
  /**
   * The request scope attribute that holds the task 
   */
  public static final String TASK_OBJ = "task";

  
  /**
   * The message key in resource bundle property for change task status form title
   */
  public static final String STATUS_TASK_TITLE = "statusTask.title";

  /**
   * The message key in resource bundle property for change road defect status form heading
   */
  public static final String STATUS_TASK_HEADING = "statusTask.heading";

  public static final String ERROR_STATUS_TASK_FAIL = "errors.task.status.fail";
}

⌨️ 快捷键说明

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