Qyoto  4.0.6
Qyoto is a C# language binding for Qt
 All Classes Namespaces Functions Variables Typedefs Enumerations Properties
QtXml.QDomDocumentType Class Reference

The QDomDocumentType class is the representation of the DTD in the document tree. More...

Inheritance diagram for QtXml.QDomDocumentType:
Collaboration diagram for QtXml.QDomDocumentType:

Public Member Functions

 QDomDocumentType ()
 
 
 QDomDocumentType (QDomDocumentType x)
 
 
override void CreateProxy ()
 
new void Dispose ()
 
- Public Member Functions inherited from QtXml.QDomNode
override bool Equals (object o)
 
override int GetHashCode ()
 
 QDomNode ()
 
 
 QDomNode (QDomNode n)
 
 
new QDomNode AppendChild (QDomNode newChild)
 
 
new void Clear ()
 
 
new QDomNode CloneNode (bool deep=true)
 
 
new QDomElement FirstChildElement (string tagName="")
 
 
new QDomNode InsertAfter (QDomNode newChild, QDomNode refChild)
 
 
new QDomNode InsertBefore (QDomNode newChild, QDomNode refChild)
 
 
new bool IsSupported (string feature, string version)
 
 
new QDomElement LastChildElement (string tagName="")
 
 
new QDomNode NamedItem (string name)
 
 
new QDomElement NextSiblingElement (string taName="")
 
 
new void Normalize ()
 
 
new QDomElement PreviousSiblingElement (string tagName="")
 
 
new QDomNode RemoveChild (QDomNode oldChild)
 
 
new QDomNode ReplaceChild (QDomNode newChild, QDomNode oldChild)
 
 
new void Save (QTextStream str, int indent)
 
 
new void Save (QTextStream str, int indent, QDomNode.EncodingPolicy encodingPolicy)
 
 
new QDomAttr ToAttr ()
 
 
new QDomCDATASection ToCDATASection ()
 
 
new QDomCharacterData ToCharacterData ()
 
 
new QDomComment ToComment ()
 
 
new QDomDocument ToDocument ()
 
 
new QDomDocumentFragment ToDocumentFragment ()
 
 
new QDomDocumentType ToDocumentType ()
 
 
new QDomElement ToElement ()
 
 
new QDomEntity ToEntity ()
 
 
new QDomEntityReference ToEntityReference ()
 
 
new QDomNotation ToNotation ()
 
 
new QDomProcessingInstruction ToProcessingInstruction ()
 
 
new QDomText ToText ()
 
 
new void Dispose ()
 

Protected Member Functions

 QDomDocumentType (System.Type dummy)
 
- Protected Member Functions inherited from QtXml.QDomNode
 QDomNode (System.Type dummy)
 

Properties

QDomNamedNodeMap Entities [get]
 
 
string InternalSubset [get, set]
 
 
string Name [get]
 
 
QDomNode.NodeType nodeType [get]
 
 
QDomNamedNodeMap Notations [get]
 
 
string PublicId [get]
 
 
string SystemId [get]
 
 
- Properties inherited from QtXml.QDomNode
string NodeValue [get, set]
 
 
string Prefix [get, set]
 
 
QDomNamedNodeMap Attributes [get]
 
 
QDomNodeList ChildNodes [get]
 
 
int ColumnNumber [get]
 
 
QDomNode FirstChild [get]
 
 
bool HasAttributes [get]
 
 
bool HasChildNodes [get]
 
 
bool IsAttr [get]
 
 
bool IsCDATASection [get]
 
 
bool IsCharacterData [get]
 
 
bool IsComment [get]
 
 
bool IsDocument [get]
 
 
bool IsDocumentFragment [get]
 
 
bool IsDocumentType [get]
 
 
bool IsElement [get]
 
 
bool IsEntity [get]
 
 
bool IsEntityReference [get]
 
 
bool IsNotation [get]
 
 
bool IsNull [get]
 
 
bool IsProcessingInstruction [get]
 
 
bool IsText [get]
 
 
QDomNode LastChild [get]
 
 
int LineNumber [get]
 
 
string LocalName [get]
 
 
string NamespaceURI [get]
 
 
QDomNode NextSibling [get]
 
 
string NodeName [get]
 
 
QDomNode.NodeType nodeType [get]
 
 
QDomDocument OwnerDocument [get]
 
 
QDomNode ParentNode [get]
 
 
QDomNode PreviousSibling [get]
 
 
virtual System.IntPtr SmokeObject [get, set]
 

Additional Inherited Members

- Public Types inherited from QtXml.QDomNode
enum  EncodingPolicy { EncodingFromDocument = 1, EncodingFromTextStream = 2 }
  More...
 
enum  NodeType {
  AttributeNode = 2, BaseNode = 21, CDATASectionNode = 4, CharacterDataNode = 22,
  CommentNode = 8, DocumentFragmentNode = 11, DocumentNode = 9, DocumentTypeNode = 10,
  ElementNode = 1, EntityNode = 6, EntityReferenceNode = 5, NotationNode = 12,
  ProcessingInstructionNode = 7, TextNode = 3
}
  More...
 
- Static Public Member Functions inherited from QtXml.QDomNode
static bool operator!= (QDomNode one, QDomNode n)
 
 
static bool operator== (QDomNode one, QDomNode n)
 
 
- Protected Attributes inherited from QtXml.QDomNode
SmokeInvocation interceptor
 

Detailed Description

The QDomDocumentType class is the representation of the DTD in the document tree.

The QDomDocumentType class allows read-only access to some of the data structures in the DTD: it can return a map of all entities() and notations(). In addition the function name() returns the name of the document type as specified in the <!DOCTYPE name> tag. This class also provides the publicId(), systemId() and internalSubset() functions.

See also QDomDocument.

Constructor & Destructor Documentation

QtXml.QDomDocumentType.QDomDocumentType ( System.Type  dummy)
protected
QtXml.QDomDocumentType.QDomDocumentType ( )

Creates an empty QDomDocumentType object.

QtXml.QDomDocumentType.QDomDocumentType ( QDomDocumentType  x)

Constructs a copy of n.

The data of the copy is shared (shallow copy): modifying one node will also change the other. If you want to make a deep copy, use cloneNode().

Member Function Documentation

override void QtXml.QDomDocumentType.CreateProxy ( )
virtual

Reimplemented from QtXml.QDomNode.

new void QtXml.QDomDocumentType.Dispose ( )

Property Documentation

QDomNamedNodeMap QtXml.QDomDocumentType.Entities
get

Returns a map of all entities described in the DTD.

string QtXml.QDomDocumentType.InternalSubset
getset

Returns the internal subset of the document type or an empty string if there is no internal subset.

See also publicId() and systemId().

string QtXml.QDomDocumentType.Name
get

Returns the name of the document type as specified in the <!DOCTYPE name> tag.

See also nodeName().

QDomNode.NodeType QtXml.QDomDocumentType.nodeType
get

Returns DocumentTypeNode.

See also isDocumentType() and QDomNode::toDocumentType().

QDomNamedNodeMap QtXml.QDomDocumentType.Notations
get

Returns a map of all notations described in the DTD.

string QtXml.QDomDocumentType.PublicId
get

Returns the public identifier of the external DTD subset or an empty string if there is no public identifier.

See also systemId(), internalSubset(), and QDomImplementation::createDocumentType().

string QtXml.QDomDocumentType.SystemId
get

Returns the system identifier of the external DTD subset or an empty string if there is no system identifier.

See also publicId(), internalSubset(), and QDomImplementation::createDocumentType().