DocumentType

extends Node

A DocumentType represents an XML doctype.

Constructors

DocumentType other, Node deep ents = new java.util.ArrayList(); ents.addAll(other.ents); // tbd deep copy nots = new java.util.ArrayList(); nots.addAll(other.nots); // tbd deep copy name = other.name; publicId = other.publicId; systemId = other.systemId; internalSubset = other.internalSubset; ents = new java.util.ArrayList(); nots = new java.util.ArrayList();

Type Functions

entities()

Get all declared Entities.

name()

Get the name of this DocumentType.

notations()

Get all declared Notations.

Functions inherited from Node