package dtd
- Alphabetic
- Public
- Protected
Type Members
-  case class AttListDecl(name: String, attrs: List[AttrDecl]) extends MarkupDecl with Product with Serializable
-    case class AttrDecl(name: String, tpe: String, default: DefaultDecl) extends Product with Serializablean attribute declaration. an attribute declaration. at this point, the tpe is a string. Future versions might provide a way to access the attribute types more directly. 
-  sealed abstract class ContentModel extends AnyRef
-  case class DEFAULT(fixed: Boolean, attValue: String) extends DefaultDecl with Product with Serializable
-  sealed abstract class DFAContentModel extends ContentModel
-   abstract  class DTD extends AnyRefA document type declaration. 
-   sealed abstract  class Decl extends AnyRefXML declarations XML declarations - scala.xml.dtd.AttListDecl — Attribute list declaration (ATTLIST)
- scala.xml.dtd.AttrDecl — Attribute declaration
- scala.xml.dtd.ElemDecl — Element declaration (ELEMENT)
- scala.xml.dtd.ParameterEntityDecl — Parameter entity list (ENTITY %)
- scala.xml.dtd.ParsedEntityDecl — Parsed general entity list (ENTITY)
- scala.xml.dtd.PEReference — Parsed entity reference
- scala.xml.dtd.UnparsedEntityDecl — Unparsed entity list (ENTITY NDATA)
 
-  sealed abstract class DefaultDecl extends AnyRef
-    case class DocType(name: String, extID: ExternalID, intSubset: collection.Seq[Decl]) extends Product with SerializableAn XML node for document type declaration. 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 
 
-  case class ELEMENTS(r: ContentModel.RegExp) extends DFAContentModel with Product with Serializable
-    case class ElemDecl(name: String, contentModel: ContentModel) extends MarkupDecl with Product with Serializablean element declaration 
-   sealed abstract  class EntityDecl extends MarkupDeclan entity declaration 
-  sealed abstract class EntityDef extends AnyRef
-  case class ExtDef(extID: ExternalID) extends EntityDef with Product with Serializable
-   sealed abstract  class ExternalID extends TokenTestsan ExternalIDs - either PublicID or SystemID 
-  case class IntDef(value: String) extends EntityDef with Product with Serializable
-  case class MIXED(r: ContentModel.RegExp) extends DFAContentModel with Product with Serializable
-  sealed abstract class MarkupDecl extends Decl
-    case class NotationDecl(name: String, extID: ExternalID) extends MarkupDecl with Product with Serializablea notation declaration 
-    case class PEReference(ent: String) extends MarkupDecl with Product with Serializablea parsed entity reference 
-    case class ParameterEntityDecl(name: String, entdef: EntityDef) extends EntityDecl with Product with Serializablea parameter entity declaration 
-    case class ParsedEntityDecl(name: String, entdef: EntityDef) extends EntityDecl with Product with Serializablea parsed general entity declaration 
-    case class PublicID(publicId: String, systemId: String) extends ExternalID with Product with Serializablea public identifier (see http://www.w3.org/QA/2002/04/valid-dtd-list.html). a public identifier (see http://www.w3.org/QA/2002/04/valid-dtd-list.html). - publicId
- the public identifier literal 
- systemId
- (can be null for notation pubIDs) the system identifier literal 
 
-    case class SystemID(systemId: String) extends ExternalID with Product with Serializablea system identifier a system identifier - systemId
- the system identifier literal 
 
-  class Tokens extends AnyRef
-    case class UnparsedEntityDecl(name: String, extID: ExternalID, notation: String) extends EntityDecl with Product with Serializablean unparsed entity declaration 
-  case class ValidationException(e: String) extends Exception with Product with Serializable
Deprecated Type Members
-    class ElementValidator extends (Node) => Booleanvalidate children and/or attributes of an element exceptions are created but not thrown. validate children and/or attributes of an element exceptions are created but not thrown. - Annotations
- @deprecated
- Deprecated
- (Since version 1.3.0) This class will be removed 
 
-    class Scanner extends Tokens with TokenTestsScanner for regexps (content models in DTD element declarations) todo: cleanup Scanner for regexps (content models in DTD element declarations) todo: cleanup - Annotations
- @deprecated
- Deprecated
- (Since version 1.3.0) This class will be removed 
 
Value Members
-  object ANY extends ContentModel with Product with Serializable
-  object ContentModel extends WordExp
-  object DocType extends java.io.Serializable
-  object EMPTY extends ContentModel with Product with Serializable
-  object IMPLIED extends DefaultDecl with Product with Serializable
-  object MakeValidationException
-    object NoExternalID extends ExternalIDA marker used when a DocTypecontains no external id.
-  object PCDATA extends ContentModel with Product with Serializable
-  object REQUIRED extends DefaultDecl with Product with Serializable
Deprecated Value Members
-    object ContentModelParser extends ScannerParser for regexps (content models in DTD element declarations) Parser for regexps (content models in DTD element declarations) - Annotations
- @deprecated
- Deprecated
- (Since version 1.3.0) This object will be removed