blob: 949962c465b0b33e63761edada1ff1b6a9be1926 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package bjc.rgens.parser;
public class ConfigSet {
public final Map<String, RGrammarSet> grammars;
public final Map<String, GrammarTemplate> templates;
public final Map<String, ConfigSet> subconfigs;
public ConfigSet() {
grammars = new HashMap<>();
templates = new HashMap<>();
subconfigs = new HashMap<>();
}
}
|