File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -13,13 +13,15 @@ public class Class implements Member, Comparable {
13
13
private String namespace ;
14
14
private ArrayList <String > extensions ;
15
15
private ArrayList <String > interfaces ;
16
+ private ArrayList <Config > config ;
16
17
17
18
18
19
public Class (String name ){
19
20
this .name = name ;
20
21
this .members = new ArrayList <>();
21
22
this .extensions = new ArrayList <>();
22
23
this .interfaces = new ArrayList <>();
24
+ this .config = new ArrayList <>();
23
25
}
24
26
25
27
public String getName (){
@@ -86,6 +88,14 @@ public ArrayList<Member> getMembers(){
86
88
return members ;
87
89
}
88
90
91
+ public void addConfig (Config config ){
92
+ this .config .add (config );
93
+ }
94
+
95
+ public ArrayList <Config > getConfig (){
96
+ return config ;
97
+ }
98
+
89
99
public ArrayList <Class > getClasses (){
90
100
ArrayList <Class > classes = new ArrayList <>();
91
101
for (Member member : members ){
You can’t perform that action at this time.
0 commit comments