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

xmlparser.parsing.EventParser Maven / Gradle / Ivy

The newest version!
package xmlparser.parsing;

import java.util.Map;

public interface EventParser {

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

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy