1 /* ======================================
2 * Copyright (c) 2004-2005 Achim Nierbeck
3 * All rights reserved.
4 *
5 * You may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.gnu.org/licenses/lgpl.html
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 * ======================================
16 */
17
18 /*
19 * PreferenceConstants.java
20 * $Revision: 1.4 $
21 * Date 14.12.2005
22 *
23 * $Author: nierbeck $
24 * $Date: 2006/02/02 21:31:31 $
25 *
26 */
27
28 package de.nierbeck.timeTrack.preferences;
29
30 /***
31 * Constant definitions for plug-in preferences
32 */
33 public class PreferenceConstants {
34
35 /***
36 * File Constant
37 */
38 public static final String P_FILE = "filePreference";
39
40 /***
41 * File Default
42 */
43 public static final String P_FILE_DEFAULT = "data.xml";
44
45 /***
46 *Preference File
47 */
48 public static final String P_PREFSFILE = "xmlPrefsFilePreference";
49
50 /***
51 * Path Preference
52 */
53 public static final String P_PATH = "pathPreference";
54
55 /***
56 * Path default
57 */
58 public static final String P_PATH_DEFAULT = "";
59
60 //public static final String P_BOOLEAN = "booleanPreference";
61
62 //public static final String P_CHOICE = "choicePreference";
63
64 /***
65 * String Preference
66 */
67 public static final String P_STRING = "stringPreference";
68
69 /***
70 * Update Preferences
71 */
72 public static final String P_UPDATE_INTERVALL = "updatePreference";
73
74 /***
75 * default update intervall
76 */
77 public static final String P_UPDATE_INTERVALL_DEFAULT = "2";
78
79 }