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

xmlparser.parsing.EventParser Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy