blob: 968cc693a9be8641f81b5d87cf08b164c7e22ecc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package bjc.rgens.parser;
import java.util.HashMap;
import java.util.Map;
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<>();
}
}
|