Interface IParserNode

  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    void
    Called when this tag is done being parsed (the start tag and all children have been fully parsed) and it is going to be discarded by the parser.
    nodeToPushAfterStarting(String uri, String localName, String qName, Attributes attributes)
    Called when a start tag is parsed.
    void
    Called when a literal string is parsed in the XML stream.
  • Method Details Link icon

    • nodeToPushAfterStarting Link icon

      IParserNode nodeToPushAfterStarting(String uri, String localName, String qName, Attributes attributes)
      Called when a start tag is parsed. Returns the node to handle this new scope which may be the same instance as the receiver if this same node wants to take responsibility.
      Parameters:
      uri -
      localName -
      qName -
      attributes -
      Returns:
    • stringWasParsed Link icon

      void stringWasParsed(String string)
      Called when a literal string is parsed in the XML stream.
      Parameters:
      string -
    • didFinishParsing Link icon

      void didFinishParsing()
      Called when this tag is done being parsed (the start tag and all children have been fully parsed) and it is going to be discarded by the parser.