c

scala.xml.parsing

DefaultMarkupHandler

abstract class DefaultMarkupHandler extends MarkupHandler

Default implementation of markup handler always returns NodeSeq.Empty

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DefaultMarkupHandler
  2. MarkupHandler
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DefaultMarkupHandler()

Abstract Value Members

  1. abstract def reportSyntaxError(pos: Int, str: String): Unit
    Definition Classes
    MarkupHandler

Concrete 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 attListDecl(name: String, attList: List[AttrDecl]): Unit
    Definition Classes
    MarkupHandler
  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def comment(pos: Int, comment: String): NodeSeq

    callback method invoked by MarkupParser after parsing comment.

    callback method invoked by MarkupParser after parsing comment.

    Definition Classes
    DefaultMarkupHandlerMarkupHandler
  8. var decls: List[Decl]
    Definition Classes
    MarkupHandler
  9. def elem(pos: Int, pre: String, label: String, attrs: MetaData, scope: NamespaceBinding, empty: Boolean, args: NodeSeq): NodeSeq

    callback method invoked by MarkupParser after parsing an element, between the elemStart and elemEnd callbacks

    callback method invoked by MarkupParser after parsing an element, between the elemStart and elemEnd callbacks

    pos

    the position in the source file

    pre

    the prefix

    label

    the local name

    attrs

    the attributes (metadata)

    empty

    true if the element was previously empty; false otherwise.

    args

    the children of this element

    Definition Classes
    DefaultMarkupHandlerMarkupHandler
  10. def elemDecl(n: String, cmstr: String): Unit
    Definition Classes
    MarkupHandler
  11. def elemEnd(pos: Int, pre: String, label: String): Unit

    callback method invoked by MarkupParser after end-tag of element.

    callback method invoked by MarkupParser after end-tag of element.

    pos

    the position in the source file

    pre

    the prefix

    label

    the local name

    Definition Classes
    MarkupHandler
  12. def elemStart(pos: Int, pre: String, label: String, attrs: MetaData, scope: NamespaceBinding): Unit

    callback method invoked by MarkupParser after start-tag of element.

    callback method invoked by MarkupParser after start-tag of element.

    pos

    the position in the sourcefile

    pre

    the prefix

    label

    the local name

    attrs

    the attributes (metadata)

    Definition Classes
    MarkupHandler
  13. def endDTD(n: String): Unit
    Definition Classes
    MarkupHandler
  14. var ent: Map[String, EntityDecl]
    Definition Classes
    MarkupHandler
  15. def entityRef(pos: Int, n: String): NodeSeq

    callback method invoked by MarkupParser after parsing entity ref.

    callback method invoked by MarkupParser after parsing entity ref.

    Definition Classes
    DefaultMarkupHandlerMarkupHandler
    To do

    expanding entity references

  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  18. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  20. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. val isValidating: Boolean

    returns true is this markup handler is validating

    returns true is this markup handler is validating

    Definition Classes
    MarkupHandler
  23. def lookupElemDecl(Label: String): ElemDecl
    Definition Classes
    MarkupHandler
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. def notationDecl(notat: String, extID: ExternalID): Unit
    Definition Classes
    MarkupHandler
  26. final def notify(): Unit
    Definition Classes
    AnyRef
  27. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  28. def parameterEntityDecl(name: String, edef: EntityDef): Unit
    Definition Classes
    MarkupHandler
  29. def parsedEntityDecl(name: String, edef: EntityDef): Unit
    Definition Classes
    MarkupHandler
  30. def peReference(name: String): Unit
    Definition Classes
    MarkupHandler
  31. def procInstr(pos: Int, target: String, txt: String): NodeSeq

    callback method invoked by MarkupParser after parsing PI.

    callback method invoked by MarkupParser after parsing PI.

    Definition Classes
    DefaultMarkupHandlerMarkupHandler
  32. def replacementText(entityName: String): Source
    Definition Classes
    MarkupHandler
  33. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  34. def text(pos: Int, txt: String): NodeSeq

    callback method invoked by MarkupParser after parsing text.

    callback method invoked by MarkupParser after parsing text.

    Definition Classes
    DefaultMarkupHandlerMarkupHandler
  35. def toString(): String
    Definition Classes
    AnyRef → Any
  36. def unparsedEntityDecl(name: String, extID: ExternalID, notat: String): Unit
    Definition Classes
    MarkupHandler
  37. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def log(msg: String): Unit
    Definition Classes
    MarkupHandler
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11) This method and its usages will be removed. Use a debugger to debug code.

Inherited from MarkupHandler

Inherited from AnyRef

Inherited from Any

Ungrouped