summaryrefslogtreecommitdiff
path: root/sources/scala/xml/dtd/DTD.scala
blob: 92d1f435be2dc138cb6f4d142600e45a2ae8acb0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package scala.xml.dtd;

/** a document type declaration */
abstract class DTD {

  var externalID: ExternalID = null;

  def notations: Seq[NotationDecl] = Nil;

  def unparsedEntities: Seq[EntityDecl] = Nil;

  var decls: List[MarkupDecl] = Nil;

  //def getElemDecl(elem:String): ElemDecl;

  //def getAttribDecl(elem: String, attr: String): AttrDecl;

}