Uses of Class
com.ibm.di.exceptions.DOMException

Packages that use DOMException
com.ibm.di.entry Provides classes that implement the Tivoli Directory Integrator Entry model. 
 

Uses of DOMException in com.ibm.di.entry
 

Methods in com.ibm.di.entry that throw DOMException
 Node Entry.adoptNode(Node source)
          This method adopts the provided as parameter Node by setting its parent to null and setting the document reference to this entry object.
 Node Property.appendChild(Node arg0)
          Not applicable for properties.
 Node NodeImpl.appendChild(Node newChild)
          This private variable holds a reference to the document of this element.
 Attribute Entry.appendChild(Node newChild)
          This will add the provided Attribute in the entry using the localName of that Attribute for a key name.
 short Property.compareDocumentPosition(Node arg0)
          Not applicable for properties Does nothing.
 short NodeImpl.compareDocumentPosition(Node other)
          Does nothing!
 short DocImpl.compareDocumentPosition(Node other)
          not implemented
 Property Entry.createAttribute(String name)
          This method creates a new Property object that represents an element's attribute in terms of DOM concepts.
 Property Entry.createAttributeNS(String namespaceURI, String qualifiedName)
          This method creates new Property object that represents an element's attribute in terms of XML concepts.
 CDATASection Entry.createCDATASection(String data)
          Creates new AttributeCDATA object that represents a CDATASection in terms of XML concepts.
 Attribute Entry.createElement(String tagName)
          This method creates new Attribute object that represents an element in terms of XML concepts.
 Attribute Entry.createElementNS(String namespaceURI, String qualifiedName)
          This method creates new Attribute object that represents an element in terms of XML concepts.
 EntityReference DocImpl.createEntityReference(String name)
          not implemented
 ProcessingInstruction DocImpl.createProcessingInstruction(String target, String data)
          not implemented
 Property PropertyMap.getNamedItemNS(String namespaceURI, String localName)
          Looks up a Property using the specified namespace URI and localName.
 String Property.getNodeValue()
           
 String DocImpl.getNodeValue()
          not implemented
 String NodeImpl.getTextContent()
           
 String DocImpl.getTextContent()
          not implemented
 boolean Attribute.hasAttributeNS(String namespaceURI, String localName)
          Checks to see if a property with the specified localName and Attribute exists.
 Node DocImpl.importNode(Node importedNode, boolean deep)
          not supported
 Node NodeImpl.insertBefore(Node newChild, Node refChild)
           
 Attribute Entry.insertBefore(Node newChild, Node refChild)
          If the refChild is not presented in the entry structure or is null then the newChild will be appended to the end.
 Node NodeImpl.removeChild(Node oldChild)
           
 Attribute Entry.removeChild(Node oldChild)
          This method will remove the provided Attribute from the Entry.
 Property PropertyMap.removeNamedItem(String name)
          Removes the Property referenced by the given qualified name
 Property PropertyMap.removeNamedItemNS(String namespaceURI, String localName)
          Removes the Property referenced by the given namespace URI and localName
 Node Entry.renameNode(Node n, String namespaceURI, String qualifiedName)
          Renames the node.
 Attribute Entry.replaceChild(Node newChild, Node oldChild)
          This method will search the entry structure for the oldChild and will replace it with the newChild.
 Property PropertyMap.setNamedItem(Node property)
          Adds a Property using its nodeName attribute.
 Property PropertyMap.setNamedItemNS(Node property)
          Adds a node using its namespaceURI and localName.
 void Property.setNodeValue(String aValue)
          same as Property.setValue(String)
 void DocImpl.setNodeValue(String nodeValue)
          not implemented
 void Property.setPrefix(String prefix)
          This method sets the given prefix to the Property.
 void DocImpl.setPrefix(String prefix)
          not implemented
 void Attribute.setPrefix(String prefix)
           
 void DocImpl.setTextContent(String textContent)
          not implemented
 void Property.setValue(String value)
          Sets the value of the Property.
 void DocImpl.setXmlStandalone(boolean xmlStandalone)
          Does not change anything.
 void DocImpl.setXmlVersion(String xmlVersion)
          Does nothing.