blob: 1bd5c53cfb8f8fefb2d5e5db78837da5ae07d19c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package bjc.rgens.parser;
import java.io.Reader;
import java.util.ArrayList;
import java.util.List;
public class GrammarTemplate {
public String name;
public final List<String> lines;
public GrammarTemplate(List<String> lines) {
this.lines = lines;
}
public static GrammarTemplate readTemplate(Reader rdr) {
List<String> lines = new ArrayList<>();
GrammarTemplate template = new GrammarTemplate(lines);
return template;
}
}
|