blob: 952242893a4e85d84e259c7fe7d8d453468dd0cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package bjc.rgens.parser;
import bjc.rgens.parser.elements.CaseElement;
import bjc.utils.funcdata.IList;
/*
* @TODO
*
* Actually implement this
*/
public class RegexRuleCase extends RuleCase {
public RegexRuleCase(IList<CaseElement> elements) {
super(elements);
}
public void generate(GenerationState state) {
// TODO
}
public RegexRuleCase withElements(IList<CaseElement> elements) {
return new RegexRuleCase(elements);
}
}
|