Package xml :: Package dom :: Module minidom :: Class Node
[hide private]
[frames] | no frames]

_ClassType Node

Node --+
       |
      Node
Known Subclasses:

Instance Methods [hide private]
 
__nonzero__(self)
 
toxml(self, encoding=None)
 
toprettyxml(self, indent='\t', newl='\n', encoding=None)
 
hasChildNodes(self)
 
_get_childNodes(self)
 
_get_firstChild(self)
 
_get_lastChild(self)
 
insertBefore(self, newChild, refChild)
 
appendChild(self, node)
 
replaceChild(self, newChild, oldChild)
 
removeChild(self, oldChild)
 
normalize(self)
 
cloneNode(self, deep)
 
isSupported(self, feature, version)
 
_get_localName(self)
 
isSameNode(self, other)
 
getInterface(self, feature)
 
getUserData(self, key)
 
setUserData(self, key, data, handler)
 
_call_user_data_handler(self, operation, src, dst)
 
unlink(self)
Class Variables [hide private]
  namespaceURI = None
  parentNode = None
  ownerDocument = None
  nextSibling = None
  previousSibling = None
  prefix = None

Inherited from Node: ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE

Properties [hide private]
  firstChild
First child node, or None.
  lastChild
Last child node, or None.
  localName
Namespace-local name of this node.
Property Details [hide private]

firstChild

First child node, or None.

Get Method:
_get_firstChild(self)

lastChild

Last child node, or None.

Get Method:
_get_lastChild(self)

localName

Namespace-local name of this node.

Get Method:
_get_localName(self)