1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package inc.che.common.resource;
20
21
22
23 /***
24 * <b>Stringkonstanten</b>
25 * @version $Id: StringResources.java,v 1.1 2005/03/06 12:57:02 stevemcmee Exp $
26 * @author <address> Steve McMee <stevemcmee@users.sourceforge.net> </address>
27 */
28
29 public interface StringResources {
30
31 /*** CVS ID of this file */
32 public static final String CVS_ID =
33 "$Id: StringResources.java,v 1.1 2005/03/06 12:57:02 stevemcmee Exp $";
34
35 static final String RESOURCE_DIR = "inc/che/common/resource/";
36
37 public static final String TEXT_RESOURCES = RESOURCE_DIR + "textresource";
38 public static final String ASSERT_SYS_PROPERTY = "application.assert";
39 public static final String CONFIG_SYS_PROPERTY =
40 "application.configuration";
41 public static final String CONFIG_USER_SYS_PROPERTY =
42 "application.userconfiguration";
43 public static final String TIMEMEASURESERVER_SYS_PROPERTY =
44 "application.timemeasureserver";
45 public static final String TIMEMEASURE_SYS_PROPERTY =
46 "application.timemeasure";
47
48 }