blob: 073e0eece2245c0bd20a6f16b9b8cce437163bae (
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
28
29
30
31
32
|
package bjc.rgens.newparser;
/**
* Construct randomized grammars piece by piece.
*
* @author EVE
*
*/
public class RGrammarBuilder {
/**
* Sets the rule currently being built.
*
* @param rName The name of the rule currently being built.
*/
public void setCurrentRule(String rName) {
/*
* TODO implement.
*/
}
/**
* Convert this builder into a grammar.
*
* @return The grammar built by this builder
*/
public RGrammar toRGrammar() {
/*
* TODO implement.
*/
return null;
}
}
|