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

📄 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 QUESTION_LIST_KEY = "quesList";	String QUESTION_ID_KEY = "quesId";	String QUESTION_DATA_KEY = "quesData";	String TEST_LIST_KEY = "testList";	String TEST_ID_KEY = "testId";	String TEST_DATA_KEY = "testData";	String RESOURCE_ID_KEY = "resourceId";	String MODE_KEY = "mode";		String EDITOR_NEW_MODE = "new";		String EDITOR_EDIT_MODE = "edit";	String ASSOC_MODE_KEY = "assocMode";		String ASSOC_PARAM_PREFIX = "assoc_";	String DEASSOC_PARAM_PREFIX = "deassoc_";	String USER_TEST_LIST_KEY = "userTestList";	String NOT_USER_TEST_LIST_KEY = "notUserTestList";		String HIERARCHY_NODE_LIST_KEY = "hierNodeList";		String SEARCH_EMAIL_KEY = "searchEmail";		String SEARCH_LAST_NAME_KEY = "searchLastName";		String ANSWER_COUNT_DISTRIBUTION_CHART_ID_KEY = "answerCountDistChartId";	String ANSWER_PERCENTAGE_DISTRIBUTION_CHART_ID_KEY = "answerPercentageDistChartId";	String SELECTED_HIERARCHY_ID_KEY = "selectedHierId";}

⌨️ 快捷键说明

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