1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
61
62
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 }