package net.percederberg.grammatica.ant; import net.percederberg.grammatica.Grammar; public interface ProcessingElement { void process(Grammar grammar) throws RuntimeException; void validate() throws RuntimeException; }