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; } }