summaryrefslogtreecommitdiff
path: root/src/main/java/bjc/rgens/parser/RegexRuleCase.java
blob: 3c5748983c069982f319cfbeb4a0cf47b086e8a6 (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
25
26
27
package bjc.rgens.parser;

import bjc.rgens.parser.elements.CaseElement;
import bjc.utils.funcdata.IList;

import java.util.regex.Pattern;
import java.util.regex.PatternSyntaxException;

/*
 * @TODO
 *
 * Actually implement this
 */
public class RegexRuleCase extends RuleCase {
	public RegexRuleCase(IList<CaseElement> elements) {
		super(elements);

	}

	public void generate(GenerationState state) {

	}

	public RegexRuleCase withElements(IList<CaseElement> elements) {
		return new RegexRuleCase(elements);
	}
}