xmlparser.parsing.EventParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simplexml Show documentation
Show all versions of simplexml Show documentation
A clean and simple XML parser, serializer, and deserializer.
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