Uses of Interface
org.attoparser.simple.ISimpleMarkupHandler
-
Packages that use ISimpleMarkupHandler Package Description org.attoparser.simple Artifacts for parsing using a simplified version of the handler interfaces. -
-
Uses of ISimpleMarkupHandler in org.attoparser.simple
Classes in org.attoparser.simple that implement ISimpleMarkupHandler Modifier and Type Class Description class
AbstractSimpleMarkupHandler
Base abstract implementation ofISimpleMarkupHandler
that implements all of its methods as no-ops.Fields in org.attoparser.simple declared as ISimpleMarkupHandler Modifier and Type Field Description private ISimpleMarkupHandler
SimplifierMarkupHandler. handler
Methods in org.attoparser.simple with parameters of type ISimpleMarkupHandler Modifier and Type Method Description void
ISimpleMarkupParser. parse(char[] document, int offset, int len, ISimpleMarkupHandler handler)
Parse a document using the specifiedISimpleMarkupHandler
.void
ISimpleMarkupParser. parse(char[] document, ISimpleMarkupHandler handler)
Parse a document using the specifiedISimpleMarkupHandler
.void
ISimpleMarkupParser. parse(java.io.Reader reader, ISimpleMarkupHandler handler)
Parse a document using the specifiedISimpleMarkupHandler
.void
ISimpleMarkupParser. parse(java.lang.String document, ISimpleMarkupHandler handler)
Parse a document using the specifiedISimpleMarkupHandler
.void
SimpleMarkupParser. parse(char[] document, int offset, int len, ISimpleMarkupHandler handler)
void
SimpleMarkupParser. parse(char[] document, ISimpleMarkupHandler handler)
void
SimpleMarkupParser. parse(java.io.Reader reader, ISimpleMarkupHandler handler)
void
SimpleMarkupParser. parse(java.lang.String document, ISimpleMarkupHandler handler)
Constructors in org.attoparser.simple with parameters of type ISimpleMarkupHandler Constructor Description SimplifierMarkupHandler(ISimpleMarkupHandler handler)
Creates a new instance of this parser.
-