Home | Trees | Indices | Help |
|
---|
|
Functions that support activities related to the Document Object Model.
|
|||
_BDSNamespaceSupport Class holding information relevant to generating the namespace aspects of a DOM instance. |
|||
BindingDOMSupport This holds DOM-related information used when generating a DOM tree from a binding instance. |
|
|||
|
|||
|
|||
|
|||
|
|||
pyxb.namespace.ExpandedName |
|
||
xml.dom.Node
|
|
||
list(xml.dom.Node)
|
|
||
xml.dom.Node
|
|
||
bool
|
|
||
unicode or str
|
|
|
|||
_log = logging.getLogger(__name__)
|
|||
__DOMImplementation = xml.dom.getDOMImplementation()
|
|||
__package__ =
|
|
Return the DOMImplementation object used for pyxb operations. This is primarily used as the default implementation when generating DOM trees from a binding instance. It defaults to whatever xml.dom.getDOMImplementation() returns in your installation (often xml.dom.minidom). It can be overridden with SetDOMImplementation(). |
Convert string to a DOM instance. See Also: pyxb._SetXMLStyle. |
Namespace-aware search for an optional attribute in a node.
|
Like NodeAttribute but where the content is a QName that must be resolved in the context of the node.
|
Locate a unique child of the DOM node. This function returns the sole child of node which is an ELEMENT_NODE
instance and has a tag consistent with the given tag. If multiple nodes
with a matching
|
Locate all children of the DOM node that have a particular tag. This function returns a list of children of node which are ELEMENT_NODE instances and have a tag consistent with the given tag.
|
Locate the first element child of the node.
|
Walk all the children, extracting all text content and catenating it into the return value. Returns This is mainly used to strip comments out of the content of complex elements with simple types.
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Wed Sep 18 10:35:36 2013 | http://epydoc.sourceforge.net |