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

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

Linear Supertypes
Serializable, java.io.Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DocType
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DocType(name: String, extID: ExternalID, intSubset: Seq[Decl])

    name

    name of this DOCTYPE

    extID

    NoExternalID or the external ID of this doctype

    intSubset

    sequence of internal subset declarations

Value Members

  1. val extID: ExternalID
  2. val intSubset: Seq[Decl]
  3. val name: String
  4. final def toString(): String

    returns "<!DOCTYPE + name + extID? + ("["+intSubSet+"]")? >"

    returns "<!DOCTYPE + name + extID? + ("["+intSubSet+"]")? >"

    Definition Classes
    DocType → AnyRef → Any