2026-03-17 13:31:18 -07:00

10 lines
231 B
Java

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