blob: fdf24336fb17005461d000cd645bdafe99082e0e (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
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;
}
public void addCasePart(String csepart) {
// TODO Auto-generated method stub
}
public void endRule() {
// TODO Auto-generated method stub
}
public void finishCase() {
// TODO Auto-generated method stub
}
public void startWhereBlock(String string) {
// TODO Auto-generated method stub
}
}
|