Skip to content

Package: ReaderConstants

ReaderConstants

Coverage

1: package basic;
2:
3: /**
4: *
5: * @author Phil
6: *
7: */
8: public final class ReaderConstants {
9:         /**
10:          * DefaultConstructor.
11:          */
12:         private ReaderConstants() {
13:         }
14:
15:         /**
16:          * String representation for the reader Exception.
17:          */
18:         public static final String READEXCEPTION = "An exception is caused by the reader!";
19:
20:         /**
21:          * String representation of default typefile-directory.
22:          */
23:         public static final String DEFAULTTYPEFILEDIR = "/check/";
24:         /**
25:          * String representation of default deffile-directory.
26:          */
27:         public static final String DEFAULTDEFFILEDIR = DEFAULTTYPEFILEDIR;
28:         /**
29:          * String representation of default assignmentfile-directory.
30:          */
31:         public static final String DEFAULTASSIGNFILEDIR = "/config/";
32:         /**
33:          * String representation of default opt-directory.
34:          */
35:         public static final String DEFAULTOPTDIR = "/opt/";
36:         /**
37:          * The file-ending for reading for package description files.
38:          */
39:         public static final String PACKDESCEND = ".txt";
40:         /**
41: *
42: */
43:         public static final String PACKAGENOTCOMPLETEEXC = "The package is not complete.";
44: }