Packages

c

scala.xml.parsing

ValidatingMarkupHandler

abstract class ValidatingMarkupHandler extends MarkupHandler

Annotations
@deprecated
Deprecated

(Since version 1.3.0) This class will be removed

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

Instance Constructors

  1. new ValidatingMarkupHandler()

Abstract Value Members

  1. abstract 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
    MarkupHandler
  2. abstract 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
    MarkupHandler
  3. abstract 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
    MarkupHandler
    To do

    expanding entity references

  4. abstract 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
    MarkupHandler
  5. abstract def reportSyntaxError(pos: Int, str: String): Unit
    Definition Classes
    MarkupHandler
  6. abstract def reportValidationError(pos: Int, str: String): Unit

    report a syntax error

  7. abstract 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
    MarkupHandler

Concrete Value Members

  1. final def attListDecl(name: String, attList: List[AttrDecl]): Unit
  2. var declCurrent: ElemDecl
  3. var declStack: List[ElemDecl]
  4. var decls: List[Decl]
    Definition Classes
    MarkupHandler
  5. final def elemDecl(name: String, cmstr: String): Unit
  6. 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
    ValidatingMarkupHandlerMarkupHandler
  7. 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
    ValidatingMarkupHandlerMarkupHandler
  8. def endDTD(n: String): Unit
  9. var ent: Map[String, EntityDecl]
    Definition Classes
    MarkupHandler
  10. final val isValidating: Boolean(true)
  11. def lookupElemDecl(Label: String): ElemDecl
    Definition Classes
    MarkupHandler
  12. final def notationDecl(notat: String, extID: ExternalID): Unit
  13. def parameterEntityDecl(name: String, edef: EntityDef): Unit
    Definition Classes
    MarkupHandler
  14. def parsedEntityDecl(name: String, edef: EntityDef): Unit
    Definition Classes
    MarkupHandler
  15. final def peReference(name: String): Unit
  16. var qCurrent: Int
  17. var qStack: List[Int]
  18. def replacementText(entityName: String): Source
    Definition Classes
    MarkupHandler
  19. var rootLabel: String
  20. final def unparsedEntityDecl(name: String, extID: ExternalID, notat: String): Unit

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.