/* * Copyright 2003-2010 Tufts University Licensed under the * Educational Community License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. You may * obtain a copy of the License at * * http://www.osedu.org/licenses/ECL-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an "AS IS" * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express * or implied. See the License for the specific language governing * permissions and limitations under the License. */ package edu.tufts.vue.preferences; import java.util.Vector; import tufts.vue.VueResources; /** * @author Mike Korcynski * */ public class PreferenceConstants { /** * If you add a category here it's expected you add a corresponding full * category name in VueResources.properties, see preferences.category.* * for examples. */ public static final String MAPDISPLAY_CATEGORY="mapdisplay"; public static final String PRESENTATION_CATEGORY="presentation"; public static final String INTERACTIONS_CATEGORY="interactions"; public static final String METADATA_CATEGORY="metadata"; public static final String WINDOW_CATEGORY="windows"; public static final String FILES_CATEGORY="files"; public static final String FORMATTING_CATEGORY="formatting"; public static final String DATA_CATEGORY="data"; public static final String LANGUAGE_CATEGORY="language"; }