scala.xml.dtd.DTD.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scala-library Show documentation
Show all versions of scala-library Show documentation
Standard library for the Scala Programming Language
/* __ *\
** ________ ___ / / ___ Scala API **
** / __/ __// _ | / / / _ | (c) 2002-2013, LAMP/EPFL **
** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
** /____/\___/_/ |_/____/_/ | | **
** |/ **
\* */
package scala.xml
package dtd
import scala.collection.mutable
/** A document type declaration.
*
* @author Burak Emir
*/
abstract class DTD {
var externalID: ExternalID = null
var decls: List[Decl] = Nil
def notations: Seq[NotationDecl] = Nil
def unparsedEntities: Seq[EntityDecl] = Nil
var elem: mutable.Map[String, ElemDecl] = new mutable.HashMap[String, ElemDecl]()
var attr: mutable.Map[String, AttListDecl] = new mutable.HashMap[String, AttListDecl]()
var ent: mutable.Map[String, EntityDecl] = new mutable.HashMap[String, EntityDecl]()
override def toString() =
"DTD [\n%s%s]".format(
Option(externalID) getOrElse "",
decls.mkString("", "\n", "\n")
)
}