in scala/xml/dtd
class DocType

case class DocType(name: String, extID: ExternalID, intSubset: Seq[Decl])
extends Object
with ScalaObject
with CaseClass

an XML node for document type declaration
Author:
Burak Emir
Parameters:
target - name of this DOCTYPE
extID - None, or Some(external ID of this doctype)
intSubset - sequence of internal subset declarations

Field Summary
  val extID: ExternalID
  val intSubset: Seq[Decl]
  val name: String

Method Summary
final override def hashCode(): Int
     hashcode for this processing instruction
final override def toString(): String
     returns "<!DOCTYPE + name + extID? + ("["+intSubSet+"]")? >"

Methods inherited from java/lang/Object-class
clone, eq, equals, finalize, getClass, ne, notify, notifyAll, synchronized, wait, wait, wait

Methods inherited from scala/Any-class
!=, ==, asInstanceOf, isInstanceOf, match

Methods inherited from scala/CaseClass-class
caseArity, caseElement, caseName

Methods inherited from scala/ScalaObject-class
getScalaType

Field Detail

name

  val name: String

extID

  val extID: ExternalID

intSubset

  val intSubset: Seq[Decl]
Method Detail

hashCode

  final override def hashCode(): Int
hashcode for this processing instruction

toString

  final override def toString(): String
returns "<!DOCTYPE + name + extID? + ("["+intSubSet+"]")? >"