Package org.petitparser.grammar.xml
Interface XmlCallback<TName,TNode,TAttribute>
- All Known Implementing Classes:
XmlBuilder
public interface XmlCallback<TName,TNode,TAttribute>
Interface with callbacks form the
XmlDefinition.-
Method Summary
Modifier and Type Method Description TNodecreateAttribute(TName name, String text)TNodecreateCDATA(String text)TNodecreateComment(String text)TNodecreateDoctype(String text)TNodecreateDocument(Collection<TNode> children)TNodecreateElement(TName name, Collection<TAttribute> attributes, Collection<TNode> children)TNodecreateProcessing(String target, String text)TNamecreateQualified(String name)TNodecreateText(String text)