Interface IParserEventsHandler<N,​R>

    • Method Detail

      • onStart

        void onStart()
              throws java.lang.Exception
        Throws:
        java.lang.Exception
      • onStop

        void onStop()
             throws java.lang.Exception
        Throws:
        java.lang.Exception
      • onRootNodeStart

        N onRootNodeStart​(PXMLNode rootNode)
                   throws java.lang.Exception
        Throws:
        java.lang.Exception
      • onRootNodeEnd

        void onRootNodeEnd​(N rootNode)
                    throws java.lang.Exception
        Throws:
        java.lang.Exception
      • onNodeStart

        N onNodeStart​(PXMLNode node,
                      N parentNode)
               throws java.lang.Exception
        Throws:
        java.lang.Exception
      • onNodeEnd

        void onNodeEnd​(N node)
                throws java.lang.Exception
        Throws:
        java.lang.Exception
      • onText

        void onText​(java.lang.String text,
                    N parentNode,
                    TextLocation location)
             throws java.lang.Exception
        Throws:
        java.lang.Exception
      • onComment

        void onComment​(java.lang.String comment,
                       N parentNode,
                       TextLocation location)
                throws java.lang.Exception
        Throws:
        java.lang.Exception
      • getResult

        R getResult()
             throws java.lang.Exception
        Throws:
        java.lang.Exception