summaryrefslogtreecommitdiff
path: root/src/main/java/bjc/rgens/parser/RegexRuleCase.java
blob: 1712d57a2e8ccea2f2d65a4c053a0245f9e65d9b (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 java.util.List;
import java.util.regex.Pattern;
import java.util.regex.PatternSyntaxException;

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

	}

	public void generate(GenerationState state) {

	}

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