1 | package test.subtest; |
---|---|
2 | |
3 | public class subtesta { |
4 | |
5 | public enum ASTTagTypeTEST { |
6 | ASTNodeDecl, |
7 | DataType, |
8 | IdentityKeyword, |
9 | StringConstant, |
10 | NumericConstant, |
11 | CharConstant, |
12 | BooleanConstant, |
13 | PPKeyword, |
14 | Comment, |
15 | ImportSpec, |
16 | StructAssignValue, |
17 | EmptyTag |
18 | } |
19 | |
20 | public String mydata = ""; |
21 | |
22 | public String getData() { |
23 | return mydata; |
24 | } |
25 | |
26 | } |
27 |
Members