⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 adminconstants.java

📁 老外的在线考试
💻 JAVA
字号:
/* * CyberTester - J2EE Web application for creating, delivering and managing tests/exams/surveys.  * Copyright (C) 2003 CyberDemia Research and Services Pty Ltd * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program (see the file COPYING); if not, write to the * Free Software Foundation, Inc., * 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA * * See the COPYING file located in the top-level-directory of * the archive of this program for complete text of license. */package com.cyberdemia.cybertester.admin;/** *  * AdminConstants defines constants that are used with in the administrator area. *  * @author Alexander Yap */public interface AdminConstants{	String USER_ID_KEY = "userId";	String USER_DATA_KEY = "userData";	String USER_LIST_KEY = "userList";	String GROUP_ID_KEY = "groupId";	String GROUP_DATA_KEY = "groupData";	String GROUP_LIST_KEY = "groupList";	String QUESTION_LIST_KEY = "quesList";	String QUESTION_ID_KEY = com.cyberdemia.cybertester.Constants.QUESTION_ID_KEY;	String QUESTION_DATA_KEY = com.cyberdemia.cybertester.Constants.QUESTION_DATA_KEY;	String TEST_LIST_KEY = "testList";	String TEST_ID_KEY = com.cyberdemia.cybertester.Constants.TEST_ID_KEY;	String TEST_DATA_KEY = "testData";	String RESOURCE_ID_KEY = "resourceId";	String MODE_KEY = "mode";		String EDITOR_NEW_MODE = "new";		String EDITOR_NEW_ANSWERS_MODE = "newAnswers";	String EDITOR_EDIT_MODE = "edit";		String ASSOC_MODE_KEY = "assocMode";		String ASSOC_PARAM_PREFIX = "assoc_";	String ASSOC_PARAM_PREFIX_KEY = "assocParamPrefix";	String DISASSOC_PARAM_PREFIX = "disassoc_";	String DISASSOC_PARAM_PREFIX_KEY = "disassocParamPrefix";	String ASSIGN_GROUP_PARAM_PREFIX = "assignGroup_";	String ASSIGN_GROUP_PARAM_PREFIX_KEY = "assignGroupParamPrefix";	String UNASSIGN_GROUP_PARAM_PREFIX = "unassignGroup_";	String UNASSIGN_GROUP_PARAM_PREFIX_KEY = "unassignGroupParamPrefix";	String ADD_USER_PARAM_PREFIX = "addUser_";	String ADD_USER_PARAM_PREFIX_KEY = "addUserParamPrefix";	String USER_TEST_LIST_KEY = "userTestList";	String NOT_USER_TEST_LIST_KEY = "notUserTestList";		String SEARCH_TARGET_KEY = "searchTarget";		String ANSWER_COUNT_DISTRIBUTION_CHART_ID_KEY = "answerCountDistChartId";	String ANSWER_COUNT_DISTRIBUTION_CHART_INFO_KEY = "answerCountDistChartInfo";	String ANSWER_PERCENTAGE_DISTRIBUTION_CHART_ID_KEY = "answerPercentageDistChartId";	String ANSWER_PERCENTAGE_DISTRIBUTION_CHART_INFO_KEY = "answerPercentageDistChartInfo";	String SELECTED_HIERARCHY_ID_KEY = "selectedHierId";}

⌨️ 快捷键说明

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