Class CreateAST_ParserEventHandler
- java.lang.Object
-
- dev.pxml.core.reader.parser.eventHandler.CreateAST_ParserEventHandler
-
- All Implemented Interfaces:
IParserEventsHandler<PXMLNode,PXMLNode>
public class CreateAST_ParserEventHandler extends java.lang.Object implements IParserEventsHandler<PXMLNode,PXMLNode>
-
-
Constructor Summary
Constructors Constructor Description CreateAST_ParserEventHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PXMLNode
getResult()
void
onComment(java.lang.String comment, PXMLNode parentNode, TextLocation location)
void
onNodeEnd(PXMLNode node)
PXMLNode
onNodeStart(PXMLNode node, PXMLNode parentNode)
void
onRootNodeEnd(PXMLNode rootNode)
PXMLNode
onRootNodeStart(PXMLNode rootNode)
void
onStart()
void
onStop()
void
onText(java.lang.String text, PXMLNode parentNode, TextLocation location)
-
-
-
Method Detail
-
onStart
public void onStart()
- Specified by:
onStart
in interfaceIParserEventsHandler<PXMLNode,PXMLNode>
-
onStop
public void onStop()
- Specified by:
onStop
in interfaceIParserEventsHandler<PXMLNode,PXMLNode>
-
onRootNodeStart
public PXMLNode onRootNodeStart(PXMLNode rootNode)
- Specified by:
onRootNodeStart
in interfaceIParserEventsHandler<PXMLNode,PXMLNode>
-
onRootNodeEnd
public void onRootNodeEnd(PXMLNode rootNode)
- Specified by:
onRootNodeEnd
in interfaceIParserEventsHandler<PXMLNode,PXMLNode>
-
onNodeStart
public PXMLNode onNodeStart(PXMLNode node, PXMLNode parentNode)
- Specified by:
onNodeStart
in interfaceIParserEventsHandler<PXMLNode,PXMLNode>
-
onNodeEnd
public void onNodeEnd(PXMLNode node)
- Specified by:
onNodeEnd
in interfaceIParserEventsHandler<PXMLNode,PXMLNode>
-
onText
public void onText(java.lang.String text, PXMLNode parentNode, TextLocation location)
- Specified by:
onText
in interfaceIParserEventsHandler<PXMLNode,PXMLNode>
-
onComment
public void onComment(java.lang.String comment, PXMLNode parentNode, TextLocation location)
- Specified by:
onComment
in interfaceIParserEventsHandler<PXMLNode,PXMLNode>
-
getResult
public PXMLNode getResult()
- Specified by:
getResult
in interfaceIParserEventsHandler<PXMLNode,PXMLNode>
-
-