package com.github.fge.grappa.illegal; import com.github.fge.grappa.parsers.EventBusParser; import com.github.fge.grappa.rules.Rule; public abstract class IllegalGrammarParser extends EventBusParser<Object> { abstract Rule illegal(); abstract Rule legal(); Rule nonEmpty() { return ch('x'); } }