case class DocType(name: String, extID: ExternalID, intSubset: collection.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
- Alphabetic
- By Inheritance
- DocType
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
DocType(name: String, extID: ExternalID, intSubset: collection.Seq[Decl])
- name
name of this DOCTYPE
- extID
NoExternalID or the external ID of this doctype
- intSubset
sequence of internal subset declarations
Value Members
- val extID: ExternalID
- val intSubset: collection.Seq[Decl]
- val name: String
-
final
def
toString(): String
returns "<!DOCTYPE + name + extID? + ("["+intSubSet+"]")? >"
returns "<!DOCTYPE + name + extID? + ("["+intSubSet+"]")? >"
- Definition Classes
- DocType → AnyRef → Any