com.codecommit.antixml

NodeSeqSAXHandler

class NodeSeqSAXHandler extends DefaultHandler2

Defines a SAX2 handler which produces an instance of com.codecommit.antixml.Group[com.codecommit.antixml.Elem] as a result. This is the handler which is used internally by com.codecommit.antixml.SAXParser. It is provided as part of the public API to allow Anti-XML to be used with alternative SAX2 event sources (such as HTML parsers like TagSoup). The resulting com.codecommit.antixml.Group is obtained (at the conclusion of the parse) from the result() method.

Source
NodeSeqSAXHandler.scala
See also

com.codecommit.antixml.SAXParser

Linear Supertypes
DefaultHandler2, EntityResolver2, DeclHandler, LexicalHandler, DefaultHandler, ErrorHandler, ContentHandler, DTDHandler, EntityResolver, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. NodeSeqSAXHandler
  2. DefaultHandler2
  3. EntityResolver2
  4. DeclHandler
  5. LexicalHandler
  6. DefaultHandler
  7. ErrorHandler
  8. ContentHandler
  9. DTDHandler
  10. EntityResolver
  11. AnyRef
  12. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new NodeSeqSAXHandler()

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  5. def attributeDecl(arg0: String, arg1: String, arg2: String, arg3: String, arg4: String): Unit

    Definition Classes
    DefaultHandler2 → DeclHandler
    Annotations
    @throws( classOf[org.xml.sax.SAXException] )
  6. def characters(ch: Array[Char], start: Int, length: Int): Unit

    Definition Classes
    NodeSeqSAXHandler → DefaultHandler → ContentHandler
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def comment(arg0: Array[Char], arg1: Int, arg2: Int): Unit

    Definition Classes
    DefaultHandler2 → LexicalHandler
    Annotations
    @throws( classOf[org.xml.sax.SAXException] )
  9. def elementDecl(arg0: String, arg1: String): Unit

    Definition Classes
    DefaultHandler2 → DeclHandler
    Annotations
    @throws( classOf[org.xml.sax.SAXException] )
  10. def endCDATA(): Unit

    Definition Classes
    NodeSeqSAXHandler → DefaultHandler2 → LexicalHandler
  11. def endDTD(): Unit

    Definition Classes
    DefaultHandler2 → LexicalHandler
    Annotations
    @throws( classOf[org.xml.sax.SAXException] )
  12. def endDocument(): Unit

    Definition Classes
    DefaultHandler → ContentHandler
    Annotations
    @throws( classOf[org.xml.sax.SAXException] )
  13. def endElement(uri: String, localName: String, qName: String): Unit

    Definition Classes
    NodeSeqSAXHandler → DefaultHandler → ContentHandler
  14. def endEntity(arg0: String): Unit

    Definition Classes
    DefaultHandler2 → LexicalHandler
    Annotations
    @throws( classOf[org.xml.sax.SAXException] )
  15. def endPrefixMapping(arg0: String): Unit

    Definition Classes
    DefaultHandler → ContentHandler
    Annotations
    @throws( classOf[org.xml.sax.SAXException] )
  16. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  17. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  18. def error(arg0: SAXParseException): Unit

    Definition Classes
    DefaultHandler → ErrorHandler
    Annotations
    @throws( classOf[org.xml.sax.SAXException] )
  19. def externalEntityDecl(arg0: String, arg1: String, arg2: String): Unit

    Definition Classes
    DefaultHandler2 → DeclHandler
    Annotations
    @throws( classOf[org.xml.sax.SAXException] )
  20. def fatalError(arg0: SAXParseException): Unit

    Definition Classes
    DefaultHandler → ErrorHandler
    Annotations
    @throws( classOf[org.xml.sax.SAXException] )
  21. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  22. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  23. def getExternalSubset(arg0: String, arg1: String): InputSource

    Definition Classes
    DefaultHandler2 → EntityResolver2
    Annotations
    @throws( classOf[java.io.IOException] ) @throws( classOf[org.xml.sax.SAXException] )
  24. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  25. def ignorableWhitespace(arg0: Array[Char], arg1: Int, arg2: Int): Unit

    Definition Classes
    DefaultHandler → ContentHandler
    Annotations
    @throws( classOf[org.xml.sax.SAXException] )
  26. def internalEntityDecl(arg0: String, arg1: String): Unit

    Definition Classes
    DefaultHandler2 → DeclHandler
    Annotations
    @throws( classOf[org.xml.sax.SAXException] )
  27. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  28. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  29. def notationDecl(arg0: String, arg1: String, arg2: String): Unit

    Definition Classes
    DefaultHandler → DTDHandler
    Annotations
    @throws( classOf[org.xml.sax.SAXException] )
  30. final def notify(): Unit

    Definition Classes
    AnyRef
  31. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  32. def processingInstruction(arg0: String, arg1: String): Unit

    Definition Classes
    DefaultHandler → ContentHandler
    Annotations
    @throws( classOf[org.xml.sax.SAXException] )
  33. def resolveEntity(arg0: String, arg1: String): InputSource

    Definition Classes
    DefaultHandler2 → DefaultHandler → EntityResolver
    Annotations
    @throws( classOf[java.io.IOException] ) @throws( classOf[org.xml.sax.SAXException] )
  34. def resolveEntity(arg0: String, arg1: String, arg2: String, arg3: String): InputSource

    Definition Classes
    DefaultHandler2 → EntityResolver2
    Annotations
    @throws( classOf[java.io.IOException] ) @throws( classOf[org.xml.sax.SAXException] )
  35. def result(): Group[Elem]

    Returns the com.codecommit.antixml.Group instance resulting from the SAX2 event stream.

    Returns the com.codecommit.antixml.Group instance resulting from the SAX2 event stream. This method is not thread-safe and should only be called once (in fact, calling it multiple times will throw an exception). Additionally, this method should only be called after the SAX2 stream has fully completed. The result of this method is undefined if invoked prematurely.

  36. def setDocumentLocator(arg0: Locator): Unit

    Definition Classes
    DefaultHandler → ContentHandler
  37. def skippedEntity(entity: String): Unit

    Definition Classes
    NodeSeqSAXHandler → DefaultHandler → ContentHandler
  38. def startCDATA(): Unit

    Definition Classes
    NodeSeqSAXHandler → DefaultHandler2 → LexicalHandler
  39. def startDTD(arg0: String, arg1: String, arg2: String): Unit

    Definition Classes
    DefaultHandler2 → LexicalHandler
    Annotations
    @throws( classOf[org.xml.sax.SAXException] )
  40. def startDocument(): Unit

    Definition Classes
    DefaultHandler → ContentHandler
    Annotations
    @throws( classOf[org.xml.sax.SAXException] )
  41. def startElement(uri: String, localName: String, qName: String, attrs: org.xml.sax.Attributes): Unit

    Definition Classes
    NodeSeqSAXHandler → DefaultHandler → ContentHandler
  42. def startEntity(arg0: String): Unit

    Definition Classes
    DefaultHandler2 → LexicalHandler
    Annotations
    @throws( classOf[org.xml.sax.SAXException] )
  43. def startPrefixMapping(prefix: String, namespace: String): Unit

    Definition Classes
    NodeSeqSAXHandler → DefaultHandler → ContentHandler
  44. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  45. def toString(): String

    Definition Classes
    AnyRef → Any
  46. def unparsedEntityDecl(arg0: String, arg1: String, arg2: String, arg3: String): Unit

    Definition Classes
    DefaultHandler → DTDHandler
    Annotations
    @throws( classOf[org.xml.sax.SAXException] )
  47. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  48. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  49. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. def warning(arg0: SAXParseException): Unit

    Definition Classes
    DefaultHandler → ErrorHandler
    Annotations
    @throws( classOf[org.xml.sax.SAXException] )

Inherited from DefaultHandler2

Inherited from EntityResolver2

Inherited from DeclHandler

Inherited from LexicalHandler

Inherited from DefaultHandler

Inherited from ErrorHandler

Inherited from ContentHandler

Inherited from DTDHandler

Inherited from EntityResolver

Inherited from AnyRef

Inherited from Any

Ungrouped