Qyoto  4.0.5
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 QDomNamedNodeMap Entities ()
 
 
new string InternalSubset ()
 
 
new string Name ()
 
 
new QDomNode.NodeType nodeType ()
 
 
new QDomNamedNodeMap Notations ()
 
 
new string PublicId ()
 
 
new string SystemId ()
 
 
new void Dispose ()
 
- Public Member Functions inherited from QtXml.QDomNode
override bool Equals (object o)
 
override int GetHashCode ()
 
 QDomNode ()
 
 
 QDomNode (QDomNode arg1)
 
 
new QDomNode AppendChild (QDomNode newChild)
 
 
new QDomNamedNodeMap Attributes ()
 
 
new QDomNodeList ChildNodes ()
 
 
new void Clear ()
 
 
new QDomNode CloneNode (bool deep=true)
 
 
new int ColumnNumber ()
 
 
new QDomNode FirstChild ()
 
 
new QDomElement FirstChildElement (string tagName="")
 
 
new bool HasAttributes ()
 
 
new bool HasChildNodes ()
 
 
new QDomNode InsertAfter (QDomNode newChild, QDomNode refChild)
 
 
new QDomNode InsertBefore (QDomNode newChild, QDomNode refChild)
 
 
new bool IsAttr ()
 
 
new bool IsCDATASection ()
 
 
new bool IsCharacterData ()
 
 
new bool IsComment ()
 
 
new bool IsDocument ()
 
 
new bool IsDocumentFragment ()
 
 
new bool IsDocumentType ()
 
 
new bool IsElement ()
 
 
new bool IsEntity ()
 
 
new bool IsEntityReference ()
 
 
new bool IsNotation ()
 
 
new bool IsNull ()
 
 
new bool IsProcessingInstruction ()
 
 
new bool IsSupported (string feature, string version)
 
 
new bool IsText ()
 
 
new QDomNode LastChild ()
 
 
new QDomElement LastChildElement (string tagName="")
 
 
new int LineNumber ()
 
 
new string LocalName ()
 
 
new QDomNode NamedItem (string name)
 
 
new string NamespaceURI ()
 
 
new QDomNode NextSibling ()
 
 
new QDomElement NextSiblingElement (string taName="")
 
 
new string NodeName ()
 
 
new QDomNode.NodeType nodeType ()
 
 
new void Normalize ()
 
 
new QDomDocument OwnerDocument ()
 
 
new QDomNode ParentNode ()
 
 
new QDomNode PreviousSibling ()
 
 
new QDomElement PreviousSiblingElement (string tagName="")
 
 
new QDomNode RemoveChild (QDomNode oldChild)
 
 
new QDomNode ReplaceChild (QDomNode newChild, QDomNode oldChild)
 
 
new void Save (QTextStream arg1, int arg2)
 
 
new void Save (QTextStream arg1, int arg2, QDomNode.EncodingPolicy arg3)
 
 
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)
 

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 arg1, QDomNode arg2)
 
 
static bool operator== (QDomNode arg1, QDomNode arg2)
 
 
- Protected Attributes inherited from QtXml.QDomNode
SmokeInvocation interceptor
 
- Properties inherited from QtXml.QDomNode
new string NodeValue [get, set]
 
 
new string Prefix [get, set]
 
 
virtual System.IntPtr SmokeObject [get, set]
 

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 ( )
new QDomNamedNodeMap QtXml.QDomDocumentType.Entities ( )

Returns a map of all entities described in the DTD.

new string QtXml.QDomDocumentType.InternalSubset ( )

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

See also publicId() and systemId().

new string QtXml.QDomDocumentType.Name ( )

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

See also nodeName().

new QDomNode.NodeType QtXml.QDomDocumentType.nodeType ( )

Returns DocumentTypeNode.

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

new QDomNamedNodeMap QtXml.QDomDocumentType.Notations ( )

Returns a map of all notations described in the DTD.

new string QtXml.QDomDocumentType.PublicId ( )

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().

new string QtXml.QDomDocumentType.SystemId ( )

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().