Package pywbem :: Module cim_xml :: Class QUALIFIER
[frames] | no frames]

Class QUALIFIER

source code

    xml.dom.Node --+            
                   |            
xml.dom.minidom.Node --+        
                       |        
 xml.dom.minidom.Element --+    
                           |    
                  CIMElement --+
                               |
                              QUALIFIER


The QUALIFIER element defines a single CIM Qualifier. If the
Qualifier has a non-array type, it contains a single VALUE element
representing the value of the Qualifier. If the Qualifier has an
array type, it contains a single VALUE.ARRAY element to represent
the value.

If the Qualifier has no assigned value then the VALUE element MUST
be absent.

<!ELEMENT QUALIFIER ((VALUE | VALUE.ARRAY)?)>
<!ATTLIST QUALIFIER
    %CIMName;
    %CIMType;               #REQUIRED
    %Propagated;
    %QualifierFlavor;
    xml:lang  NMTOKEN  #IMPLIED>

Instance Methods
 
__init__(self, name, type, value=None, propagated=None, overridable=None, tosubclass=None, toinstance=None, translatable=None, xml_lang=None) source code

Inherited from CIMElement: appendChildren, appendOptionalChild, setName, setOptionalAttribute

Inherited from xml.dom.minidom.Element: __repr__, getAttribute, getAttributeNS, getAttributeNode, getAttributeNodeNS, getElementsByTagName, getElementsByTagNameNS, hasAttribute, hasAttributeNS, hasAttributes, removeAttribute, removeAttributeNS, removeAttributeNode, removeAttributeNodeNS, setAttribute, setAttributeNS, setAttributeNode, setAttributeNodeNS, setIdAttribute, setIdAttributeNS, setIdAttributeNode, unlink, writexml

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

Class Variables

Inherited from xml.dom.minidom.Element: nodeType, nodeValue, schemaType

Inherited from xml.dom.minidom.Node: namespaceURI, nextSibling, ownerDocument, parentNode, prefix, previousSibling

Inherited from xml.dom.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

Inherited from xml.dom.minidom.Element: attributes, localName

Inherited from xml.dom.minidom.Node: firstChild, lastChild

Method Details

__init__(self, name, type, value=None, propagated=None, overridable=None, tosubclass=None, toinstance=None, translatable=None, xml_lang=None)
(Constructor)

source code 
Overrides: xml.dom.minidom.Element.__init__