Skip to content

Package: AstDescriptionConstants

AstDescriptionConstants

nameinstructionbranchcomplexitylinemethod
static {...}
M: 3 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%

Coverage

1: package de.fhdw.wtf.common.constants.parser;
2:
3: /**
4: * Contains constants for wtf-symbols.
5: */
6: public final class AstDescriptionConstants {
7:         
8:         /**
9:          * Keyword "abstract".
10:          */
11:         public static final String MODIFIER_ABSTRACT = "abstract";
12:         
13:         /**
14:          * Symbol ">".
15:          */
16:         public static final String GREATER_SYMBOL = ">";
17:         
18:         /**
19:          * Symbol ":".
20:          */
21:         public static final String COLON_TOKEN = ":";
22:         
23:         /**
24:          * Symbol ";".
25:          */
26:         public static final String SEMICOLON_TOKEN = ";";
27:         
28:         /**
29:          * Prefix for {@link de.fhdw.wtf.common.ast.Model#toString()}.
30:          */
31:         public static final String MODEL_TO_STRING = "Model:";
32:         
33:         /**
34:          * Keyword "group".
35:          */
36:         public static final String GROUP_TOKEN = "group";
37:         
38:         /**
39:          * Symbol "=".
40:          */
41:         public static final String EQUAL_TOKEN = "=";
42:         
43:         /**
44:          * Symbol "[".
45:          */
46:         public static final String SQUARE_BRACKET_OPEN = "[";
47:         
48:         /**
49:          * Symbol "]".
50:          */
51:         public static final String SQUARE_BRACKET_CLOSE = "]";
52:         
53:         /**
54:          * Keyword "class".
55:          */
56:         public static final String CLASS_TOKEN = "class";
57:         
58:         /**
59:          * Keyword "exception".
60:          */
61:         public static final String EXCEPTION_TOKEN = "exception";
62:         
63:         /**
64:          * Symbol "+".
65:          */
66:         public static final String PLUS_TOKEN = " + ";
67:         
68:         /**
69:          * Symbol "{".
70:          */
71:         public static final String CURLY_BRACKET_OPEN_TOKEN = "{";
72:         
73:         /**
74:          * Symbol "}".
75:          */
76:         public static final String CURLY_BRACKET_CLOSE_TOKEN = "}";
77:         
78:         /**
79:          * Symbol "(".
80:          */
81:         public static final String BRACKET_OPEN_TOKEN = "(";
82:         
83:         /**
84:          * Symbol ")".
85:          */
86:         public static final String BRACKET_CLOSE_TOKEN = ")";
87:         
88:         /**
89:          * Symbol "-".
90:          */
91:         public static final String HYPHEN_TOKEN = "-";
92:         
93:         /**
94:          * Keyword "prior".
95:          */
96:         public static final String MODIFIER_PRIOR = "prior";
97:         
98:         /**
99:          * Keyword "transient".
100:          */
101:         public static final String MODIFIER_TRANSIENT = "transient";
102:         
103:         /**
104:          * Keyword "findable".
105:          */
106:         public static final String MODIFIER_FINDABLE = "findable";
107:         
108:         /**
109:          * Keyword "mutable".
110:          */
111:         public static final String MODIFIER_MUTABLE = "mutable";
112:         
113:         /**
114:          * Keyword "visitable".
115:          */
116:         public static final String MODIFIER_VISITABLE = "visitable";
117:         
118:         /**
119:          * Keyword "service".
120:          */
121:         public static final String MODIFIER_SERVICE = "service";
122:         
123:         /**
124:          * Symbol "*".
125:          */
126:         public static final String ASTERISK_TOKEN = "*";
127:         
128:         /**
129:          * Symbol "[[".
130:          */
131:         public static final String DOUBLE_SQUARE_BRACKET_OPEN_TOKEN = "[[";
132:         
133:         /**
134:          * Symbol "]]".
135:          */
136:         public static final String DOUBLE_SQUARE_BRACKET_CLOSE_TOKEN = "]]";
137:         
138:         /**
139:          * Symbol "->".
140:          */
141:         public static final String ARROW_TOKEN = "->";
142:         
143:         /**
144:          * Symbol ",".
145:          */
146:         public static final Object COMMA_TOKEN = ",";
147:         
148:         /**
149:          * Contains constants for wtf-symbols.
150:          */
151:         private AstDescriptionConstants() {
152:         }
153:         
154: }