Package

scala.xml

dtd

Permalink

package dtd

Visibility
  1. Public
  2. All

Type Members

  1. case class AttListDecl(name: String, attrs: List[AttrDecl]) extends MarkupDecl with Product with Serializable

    Permalink
  2. case class AttrDecl(name: String, tpe: String, default: DefaultDecl) extends Product with Serializable

    Permalink

    an attribute declaration.

    an attribute declaration. at this point, the tpe is a string. Future versions might provide a way to access the attribute types more directly.

  3. sealed abstract class ContentModel extends AnyRef

    Permalink
  4. case class DEFAULT(fixed: Boolean, attValue: String) extends DefaultDecl with Product with Serializable

    Permalink
  5. sealed abstract class DFAContentModel extends ContentModel

    Permalink
  6. abstract class DTD extends AnyRef

    Permalink

    A document type declaration.

  7. sealed abstract class Decl extends AnyRef

    Permalink

    XML declarations

    XML declarations

  8. sealed abstract class DefaultDecl extends AnyRef

    Permalink
  9. case class DocType(name: String, extID: ExternalID, intSubset: collection.Seq[Decl]) extends Product with Serializable

    Permalink

    An XML node for document type declaration.

    An XML node for document type declaration.

    name

    name of this DOCTYPE

    extID

    NoExternalID or the external ID of this doctype

    intSubset

    sequence of internal subset declarations

  10. case class ELEMENTS(r: ContentModel.RegExp) extends DFAContentModel with Product with Serializable

    Permalink
  11. case class ElemDecl(name: String, contentModel: ContentModel) extends MarkupDecl with Product with Serializable

    Permalink

    an element declaration

  12. sealed abstract class EntityDecl extends MarkupDecl

    Permalink

    an entity declaration

  13. sealed abstract class EntityDef extends AnyRef

    Permalink
  14. case class ExtDef(extID: ExternalID) extends EntityDef with Product with Serializable

    Permalink
  15. sealed abstract class ExternalID extends TokenTests

    Permalink

    an ExternalIDs - either PublicID or SystemID

  16. case class IntDef(value: String) extends EntityDef with Product with Serializable

    Permalink
  17. case class MIXED(r: ContentModel.RegExp) extends DFAContentModel with Product with Serializable

    Permalink
  18. sealed abstract class MarkupDecl extends Decl

    Permalink
  19. case class NotationDecl(name: String, extID: ExternalID) extends MarkupDecl with Product with Serializable

    Permalink

    a notation declaration

  20. case class PEReference(ent: String) extends MarkupDecl with Product with Serializable

    Permalink

    a parsed entity reference

  21. case class ParameterEntityDecl(name: String, entdef: EntityDef) extends EntityDecl with Product with Serializable

    Permalink

    a parameter entity declaration

  22. case class ParsedEntityDecl(name: String, entdef: EntityDef) extends EntityDecl with Product with Serializable

    Permalink

    a parsed general entity declaration

  23. case class PublicID(publicId: String, systemId: String) extends ExternalID with Product with Serializable

    Permalink

    a public identifier (see http://www.w3.org/QA/2002/04/valid-dtd-list.html).

    a public identifier (see http://www.w3.org/QA/2002/04/valid-dtd-list.html).

    publicId

    the public identifier literal

    systemId

    (can be null for notation pubIDs) the system identifier literal

  24. case class SystemID(systemId: String) extends ExternalID with Product with Serializable

    Permalink

    a system identifier

    a system identifier

    systemId

    the system identifier literal

  25. class Tokens extends AnyRef

    Permalink
  26. case class UnparsedEntityDecl(name: String, extID: ExternalID, notation: String) extends EntityDecl with Product with Serializable

    Permalink

    an unparsed entity declaration

  27. case class ValidationException(e: String) extends Exception with Product with Serializable

    Permalink
  28. class ElementValidator extends (Node) ⇒ Boolean

    Permalink

    validate children and/or attributes of an element exceptions are created but not thrown.

    validate children and/or attributes of an element exceptions are created but not thrown.

    Annotations
    @deprecated
    Deprecated

    (Since version 1.3.0) This class will be removed

  29. class Scanner extends Tokens with TokenTests

    Permalink

    Scanner for regexps (content models in DTD element declarations) todo: cleanup

    Scanner for regexps (content models in DTD element declarations) todo: cleanup

    Annotations
    @deprecated
    Deprecated

    (Since version 1.3.0) This class will be removed

Value Members

  1. object ANY extends ContentModel with Product with Serializable

    Permalink
  2. object ContentModel extends WordExp

    Permalink
  3. object DocType extends Serializable

    Permalink
  4. object EMPTY extends ContentModel with Product with Serializable

    Permalink
  5. object IMPLIED extends DefaultDecl with Product with Serializable

    Permalink
  6. object MakeValidationException

    Permalink

  7. object NoExternalID extends ExternalID

    Permalink

    A marker used when a DocType contains no external id.

  8. object PCDATA extends ContentModel with Product with Serializable

    Permalink
  9. object REQUIRED extends DefaultDecl with Product with Serializable

    Permalink

Deprecated Value Members

  1. object ContentModelParser extends Scanner

    Permalink

    Parser for regexps (content models in DTD element declarations)

    Parser for regexps (content models in DTD element declarations)

    Annotations
    @deprecated
    Deprecated

    (Since version 1.3.0) This object will be removed

Ungrouped