All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xmlparser.parsing.EventParser Maven / Gradle / Ivy

package xmlparser.parsing;

import java.util.Map;

public interface EventParser {

    void startNode(final String name, final Map attrs);
    void endNode();
    void someText(final String txt);

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy