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

_ClassType Element

Node --+    
       |    
    Node --+
           |
          Element

Instance Methods [hide private]
 
__init__(self, tagName, namespaceURI=None, prefix=None, localName=None)
 
_get_localName(self)
 
_get_tagName(self)
 
unlink(self)
 
getAttribute(self, attname)
 
getAttributeNS(self, namespaceURI, localName)
 
setAttribute(self, attname, value)
 
setAttributeNS(self, namespaceURI, qualifiedName, value)
 
getAttributeNode(self, attrname)
 
getAttributeNodeNS(self, namespaceURI, localName)
 
setAttributeNode(self, attr)
 
setAttributeNodeNS(self, attr)
 
removeAttribute(self, name)
 
removeAttributeNS(self, namespaceURI, localName)
 
removeAttributeNode(self, node)
 
removeAttributeNodeNS(self, node)
 
hasAttribute(self, name)
 
hasAttributeNS(self, namespaceURI, localName)
 
getElementsByTagName(self, name)
 
getElementsByTagNameNS(self, namespaceURI, localName)
 
__repr__(self)
 
writexml(self, writer, indent='', addindent='', newl='')
 
_get_attributes(self)
 
hasAttributes(self)
 
setIdAttribute(self, name)
 
setIdAttributeNS(self, namespaceURI, localName)
 
setIdAttributeNode(self, idAttr)

Inherited from Node: __nonzero__, appendChild, cloneNode, getInterface, getUserData, hasChildNodes, insertBefore, isSameNode, isSupported, normalize, removeChild, replaceChild, setUserData, toprettyxml, toxml

Class Variables [hide private]
  nodeType = 1
  nodeValue = None
  schemaType = <TypeInfo None>
  _magic_id_nodes = 0
  _child_node_types = (1, 7, 8, 3, 4, 5)

Inherited from Node: namespaceURI, nextSibling, ownerDocument, parentNode, prefix, previousSibling

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]
  attributes
NamedNodeMap of attributes on the element.
  localName
Namespace-local name of this element.

Inherited from Node: firstChild, lastChild

Method Details [hide private]

_get_localName(self)

 
Overrides: Node._get_localName

unlink(self)

 
Overrides: Node.unlink

Property Details [hide private]

attributes

NamedNodeMap of attributes on the element.

Get Method:
_get_attributes(self)

localName

Namespace-local name of this element.

Get Method:
_get_localName(self)