A C D E G H I M N O P R S T U W

A

appendChild(Node) - Method in class il.co.iter.dbdom.DBNode
Adds the node newChild to the end of the list of children of this node.
appendChild(Node) - Method in interface org.w3c.dom.Node
Adds the node newChild to the end of the list of children of this node.
appendData(String) - Method in class il.co.iter.dbdom.DBCharacterData
Append the string to the end of the character data of the node.
appendData(String) - Method in interface org.w3c.dom.CharacterData
Append the string to the end of the character data of the node.
Attr - interface org.w3c.dom.Attr.
The Attr interface represents an attribute in an Element object.
ATTRIBUTE_NODE - Static variable in interface org.w3c.dom.Node
The node is an Attr.

C

CDATA_SECTION_NODE - Static variable in interface org.w3c.dom.Node
The node is a CDATASection.
CDATASection - interface org.w3c.dom.CDATASection.
CDATA sections are used to escape blocks of text containing characters that would otherwise be regarded as markup.
CharacterData - interface org.w3c.dom.CharacterData.
The CharacterData interface extends Node with a set of attributes and methods for accessing character data in the DOM.
cloneNode(boolean) - Method in class il.co.iter.dbdom.DBNode
Not Implemented Returns a duplicate of this node, i.e., serves as a generic copy constructor for nodes.
cloneNode(boolean) - Method in interface org.w3c.dom.Node
Returns a duplicate of this node, i.e., serves as a generic copy constructor for nodes.
code - Variable in class org.w3c.dom.DOMException
 
Comment - interface org.w3c.dom.Comment.
This interface inherits from CharacterData and represents the content of a comment, i.e., all the characters between the starting ' <!--' and ending '-->'.
COMMENT_NODE - Static variable in interface org.w3c.dom.Node
The node is a Comment.
commit() - Method in class il.co.iter.dbdom.DBDOMImplementation
Non-DOM Encapsulates Connection.commit()
con - Variable in class il.co.iter.dbdom.DBNode
 
createAttribute(String) - Method in class il.co.iter.dbdom.DBDocument
Creates an Attr of the given name.
createAttribute(String) - Method in interface org.w3c.dom.Document
Creates an Attr of the given name.
createAttributeNS(String, String) - Method in class il.co.iter.dbdom.DBDocument
Not Implemented Creates an attribute of the given qualified name and namespace URI.
createAttributeNS(String, String) - Method in interface org.w3c.dom.Document
Creates an attribute of the given qualified name and namespace URI.
createCDATASection(String) - Method in class il.co.iter.dbdom.DBDocument
Creates a CDATASection node whose value is the specified string.
createCDATASection(String) - Method in interface org.w3c.dom.Document
Creates a CDATASection node whose value is the specified string.
createComment(String) - Method in class il.co.iter.dbdom.DBDocument
Creates a Comment node given the specified string.
createComment(String) - Method in interface org.w3c.dom.Document
Creates a Comment node given the specified string.
createDocument(String, String, DocumentType) - Method in class il.co.iter.dbdom.DBDOMImplementation
Not Implemented Creates an XML Document object of the specified type with its document element.
createDocument(String, String, DocumentType) - Method in interface org.w3c.dom.DOMImplementation
Creates an XML Document object of the specified type with its document element.
createDocumentFragment() - Method in class il.co.iter.dbdom.DBDocument
Not Implemented Creates an empty DocumentFragment object.
createDocumentFragment() - Method in interface org.w3c.dom.Document
Creates an empty DocumentFragment object.
createDocumentType(String, String, String) - Method in class il.co.iter.dbdom.DBDOMImplementation
Not Implemented Creates an empty DocumentType node.
createDocumentType(String, String, String) - Method in interface org.w3c.dom.DOMImplementation
Creates an empty DocumentType node.
createElement(String) - Method in class il.co.iter.dbdom.DBDocument
Creates an element of the type specified.
createElement(String) - Method in interface org.w3c.dom.Document
Creates an element of the type specified.
createElementNS(String, String) - Method in class il.co.iter.dbdom.DBDocument
Not Implemented Creates an element of the given qualified name and namespace URI.
createElementNS(String, String) - Method in interface org.w3c.dom.Document
Creates an element of the given qualified name and namespace URI.
createEntityReference(String) - Method in class il.co.iter.dbdom.DBDocument
Not Implemented Creates an EntityReference object.
createEntityReference(String) - Method in interface org.w3c.dom.Document
Creates an EntityReference object.
createNamedDocument(String) - Method in class il.co.iter.dbdom.DBDOMImplementation
Non-DOM Cretes a new document in the database.
createProcessingInstruction(String, String) - Method in class il.co.iter.dbdom.DBDocument
Creates a ProcessingInstruction node given the specified name and data strings.
createProcessingInstruction(String, String) - Method in interface org.w3c.dom.Document
Creates a ProcessingInstruction node given the specified name and data strings.
createTextNode(String) - Method in class il.co.iter.dbdom.DBDocument
Creates a Text node given the specified string.
createTextNode(String) - Method in interface org.w3c.dom.Document
Creates a Text node given the specified string.

D

DBAttr - class il.co.iter.dbdom.DBAttr.
The Attr interface represents an attribute in an Element object.
DBAttr(DBDOMImplementation, long) - Constructor for class il.co.iter.dbdom.DBAttr
Calls super(dbDomImplementation, id)
DBAttrNodeMap - class il.co.iter.dbdom.DBAttrNodeMap.
Objects implementing the NamedNodeMap interface are used to represent collections of nodes that can be accessed by name.
DBAttrNodeMap(DBElement) - Constructor for class il.co.iter.dbdom.DBAttrNodeMap
Constructs a DBAttrNodeMap associated with a DBElement
DBCDATASection - class il.co.iter.dbdom.DBCDATASection.
CDATA sections are used to escape blocks of text containing characters that would otherwise be regarded as markup.
DBCDATASection(DBDOMImplementation, long) - Constructor for class il.co.iter.dbdom.DBCDATASection
Calls super(dbDomImplementation, id)
DBCharacterData - class il.co.iter.dbdom.DBCharacterData.
The CharacterData interface extends Node with a set of attributes and methods for accessing character data in the DOM.
DBCharacterData(DBDOMImplementation, long) - Constructor for class il.co.iter.dbdom.DBCharacterData
Calls super(dbDomImplementation, id)
DBChildNodeList - class il.co.iter.dbdom.DBChildNodeList.
The NodeList interface provides the abstraction of an ordered collection of nodes, without defining or constraining how this collection is implemented.
DBChildNodeList(DBNode) - Constructor for class il.co.iter.dbdom.DBChildNodeList
Constructs a DBChildNodeList associated with a DBNode
DBComment - class il.co.iter.dbdom.DBComment.
This interface inherits from CharacterData and represents the content of a comment, i.e., all the characters between the starting ' <!--' and ending '-->'.
DBComment(DBDOMImplementation, long) - Constructor for class il.co.iter.dbdom.DBComment
Calls super(dbDomImplementation, id)
DBDocument - class il.co.iter.dbdom.DBDocument.
The Document interface represents the entire HTML or XML document.
DBDocument(DBDOMImplementation, long) - Constructor for class il.co.iter.dbdom.DBDocument
Calls super(dbDomImplementation, id)
DBDocumentNodeMap - class il.co.iter.dbdom.DBDocumentNodeMap.
Objects implementing the NamedNodeMap interface are used to represent collections of nodes that can be accessed by name.
DBDocumentNodeMap(DBDOMImplementation) - Constructor for class il.co.iter.dbdom.DBDocumentNodeMap
Constructs a DBDocumentNodeMap associated with a DBDOMImplementation
DBDocumentType - class il.co.iter.dbdom.DBDocumentType.
Each Document has a doctype attribute whose value is either null or a DocumentType object.
DBDocumentType(DBDOMImplementation, long) - Constructor for class il.co.iter.dbdom.DBDocumentType
Not Implemented Calls super(dbDomImplementation, id)
DBDOMException - exception il.co.iter.dbdom.DBDOMException.
DOMException is a generic exception thrown by DBDOM objects
DBDOMException() - Constructor for class il.co.iter.dbdom.DBDOMException
Constructs a DBDOMException with no specified detailed message.
DBDOMException(String) - Constructor for class il.co.iter.dbdom.DBDOMException
Constructs a DBDOMException with a specified detailed message.
dbDomImplementation - Variable in class il.co.iter.dbdom.DBNode
 
DBDOMImplementation - class il.co.iter.dbdom.DBDOMImplementation.
The DOMImplementation interface provides a number of methods for performing operations that are independent of any particular instance of the document object model.
DBDOMImplementation(Connection) - Constructor for class il.co.iter.dbdom.DBDOMImplementation
Constructs a client connection to a DOM stored in a DBDOM database.
DBDOMParser - class il.co.iter.dbdom.parsers.DBDOMParser.
 
DBDOMParser(DBDocument) - Constructor for class il.co.iter.dbdom.parsers.DBDOMParser
Calls super(), then sets DocumentClassName to DBDOMParser.DEFAULT_DOCUMENT_CLASS_NAME
DBDOMSpException - exception il.co.iter.dbdom.DBDOMSpException.
DOMSpException is thrown if a stored procedure does not return a result set that is specified in DBDOM.
DBDOMSpException() - Constructor for class il.co.iter.dbdom.DBDOMSpException
Constructs a DBDOMSpException with a default message.
DBDOMSpException(String) - Constructor for class il.co.iter.dbdom.DBDOMSpException
Constructs a DBDOMSpException with the name of the offending SP in the message.
DBDOMSqlException - exception il.co.iter.dbdom.DBDOMSqlException.
DOMSqlException is thrown when an error occures in a JDBC connection other than a DOMException.
DBDOMSqlException(SQLException) - Constructor for class il.co.iter.dbdom.DBDOMSqlException
Constructs a DBDOMSqlException with no specified detailed message.
DBDOMSqlException(String, SQLException) - Constructor for class il.co.iter.dbdom.DBDOMSqlException
Constructs a DBDOMSqlException with a specified detailed message.
DBElement - class il.co.iter.dbdom.DBElement.
The Element interface represents an element in an HTML or XML document.
DBElement(DBDOMImplementation, long) - Constructor for class il.co.iter.dbdom.DBElement
Calls super(dbDomImplementation, id)
DBNode - class il.co.iter.dbdom.DBNode.
The Node interface is the primary datatype for the entire Document Object Model.
DBNode(DBDOMImplementation, long) - Constructor for class il.co.iter.dbdom.DBNode
Constructs a client representation of a DBDOM Node.
DBProcessingInstruction - class il.co.iter.dbdom.DBProcessingInstruction.
The ProcessingInstruction interface represents a "processing instruction", used in XML as a way to keep processor-specific information in the text of the document.
DBProcessingInstruction(DBDOMImplementation, long) - Constructor for class il.co.iter.dbdom.DBProcessingInstruction
Calls super(dbDomImplementation, id)
DBText - class il.co.iter.dbdom.DBText.
The Text interface inherits from CharacterData and represents the textual content (termed character data in XML) of an Element or Attr.
DBText(DBDOMImplementation, long) - Constructor for class il.co.iter.dbdom.DBText
Calls super(dbDomImplementation, id)
DEFAULT_DOCUMENT_CLASS_NAME - Static variable in class il.co.iter.dbdom.parsers.DBDOMParser
Default programmatic document class name (org.apache.xerces.dom.DocumentImpl)
deleteData(int, int) - Method in class il.co.iter.dbdom.DBCharacterData
Not Implemented Remove a range of 16-bit units from the node.
deleteData(int, int) - Method in interface org.w3c.dom.CharacterData
Remove a range of 16-bit units from the node.
Document - interface org.w3c.dom.Document.
The Document interface represents the entire HTML or XML document.
DOCUMENT_FRAGMENT_NODE - Static variable in interface org.w3c.dom.Node
The node is a DocumentFragment.
DOCUMENT_NODE - Static variable in interface org.w3c.dom.Node
The node is a Document.
DOCUMENT_TYPE_NODE - Static variable in interface org.w3c.dom.Node
The node is a DocumentType.
DocumentFragment - interface org.w3c.dom.DocumentFragment.
DocumentFragment is a "lightweight" or "minimal" Document object.
DocumentType - interface org.w3c.dom.DocumentType.
Each Document has a doctype attribute whose value is either null or a DocumentType object.
DOMException - exception org.w3c.dom.DOMException.
DOM operations only raise exceptions in "exceptional" circumstances, i.e., when an operation is impossible to perform (either for logical reasons, because data is lost, or because the implementation has become unstable).
DOMException(short, String) - Constructor for class org.w3c.dom.DOMException
 
DOMImplementation - interface org.w3c.dom.DOMImplementation.
The DOMImplementation interface provides a number of methods for performing operations that are independent of any particular instance of the document object model.
DOMSTRING_SIZE_ERR - Static variable in class org.w3c.dom.DOMException
If the specified range of text does not fit into a DOMString

E

Element - interface org.w3c.dom.Element.
The Element interface represents an element in an HTML or XML document.
ELEMENT_NODE - Static variable in interface org.w3c.dom.Node
The node is an Element.
Entity - interface org.w3c.dom.Entity.
This interface represents an entity, either parsed or unparsed, in an XML document.
ENTITY_NODE - Static variable in interface org.w3c.dom.Node
The node is an Entity.
ENTITY_REFERENCE_NODE - Static variable in interface org.w3c.dom.Node
The node is an EntityReference.
EntityReference - interface org.w3c.dom.EntityReference.
EntityReference objects may be inserted into the structure model when an entity reference is in the source document, or when the user wishes to insert an entity reference.
executeQuery() - Method in class il.co.iter.dbdom.StoredProcedure
 

G

getAttribute(String) - Method in class il.co.iter.dbdom.DBElement
Retrieves an attribute value by name.
getAttribute(String) - Method in interface org.w3c.dom.Element
Retrieves an attribute value by name.
getAttributeNode(String) - Method in class il.co.iter.dbdom.DBElement
Retrieves an attribute node by name.
getAttributeNode(String) - Method in interface org.w3c.dom.Element
Retrieves an attribute node by name.
getAttributeNodeNS(String, String) - Method in class il.co.iter.dbdom.DBElement
Not Implemented Retrieves an Attr node by local name and namespace URI.
getAttributeNodeNS(String, String) - Method in interface org.w3c.dom.Element
Retrieves an Attr node by local name and namespace URI.
getAttributeNS(String, String) - Method in class il.co.iter.dbdom.DBElement
Not Implemented Retrieves an attribute value by local name and namespace URI.
getAttributeNS(String, String) - Method in interface org.w3c.dom.Element
Retrieves an attribute value by local name and namespace URI.
getAttributes() - Method in class il.co.iter.dbdom.DBNode
A NamedNodeMap containing the attributes of this node (if it is an Element) or null otherwise.
getAttributes() - Method in class il.co.iter.dbdom.DBElement
A NamedNodeMap containing the attributes of this node (if it is an Element) or null otherwise.
getAttributes() - Method in interface org.w3c.dom.Node
A NamedNodeMap containing the attributes of this node (if it is an Element) or null otherwise.
getAutoCommit() - Method in class il.co.iter.dbdom.DBDOMImplementation
Non-DOM Encapsulates Connection.getAutoCommit()
getChildNodes() - Method in class il.co.iter.dbdom.DBNode
Not Tested Not Implemnted A NodeList that contains all children of this node.
getChildNodes() - Method in interface org.w3c.dom.Node
A NodeList that contains all children of this node.
getConnection() - Method in class il.co.iter.dbdom.DBDOMImplementation
Non-DOM Returns a reference to the database connection.
getData() - Method in class il.co.iter.dbdom.DBCharacterData
The character data of the node that implements this interface.
getData() - Method in class il.co.iter.dbdom.DBProcessingInstruction
The content of this processing instruction.
getData() - Method in interface org.w3c.dom.CharacterData
The character data of the node that implements this interface.
getData() - Method in interface org.w3c.dom.ProcessingInstruction
The content of this processing instruction.
getDbDomImplementation() - Method in class il.co.iter.dbdom.DBNode
Non-DOM Returns the DBDOMImplementation that is responsible for this Node.
getDoctype() - Method in class il.co.iter.dbdom.DBDocument
The Document Type Declaration (see DocumentType) associated with this document.
getDoctype() - Method in interface org.w3c.dom.Document
The Document Type Declaration (see DocumentType) associated with this document.
getDocumentElement() - Method in class il.co.iter.dbdom.DBDocument
This is a convenience attribute that allows direct access to the child node that is the root element of the document.
getDocumentElement() - Method in interface org.w3c.dom.Document
This is a convenience attribute that allows direct access to the child node that is the root element of the document.
getDocumentName() - Method in class il.co.iter.dbdom.DBDocument
Returns the unique name that identifies this Document in the database.
getDocuments() - Method in class il.co.iter.dbdom.DBDOMImplementation
Non-DOM Returns a map of all documents stored in a DBDOM database.
getElementById(String) - Method in class il.co.iter.dbdom.DBDocument
Not Implemented Returns the Element whose ID is given by elementId.
getElementById(String) - Method in interface org.w3c.dom.Document
Returns the Element whose ID is given by elementId.
getElementsByTagName(String) - Method in class il.co.iter.dbdom.DBDocument
Not Implemented Returns a NodeList of all the Elements with a given tag name in the order in which they are encountered in a preorder traversal of the Document tree.
getElementsByTagName(String) - Method in class il.co.iter.dbdom.DBElement
Not Implemented Returns a NodeList of all descendant Elements with a given tag name, in the order in which they are encountered in a preorder traversal of this Element tree.
getElementsByTagName(String) - Method in interface org.w3c.dom.Element
Returns a NodeList of all descendant Elements with a given tag name, in the order in which they are encountered in a preorder traversal of this Element tree.
getElementsByTagName(String) - Method in interface org.w3c.dom.Document
Returns a NodeList of all the Elements with a given tag name in the order in which they are encountered in a preorder traversal of the Document tree.
getElementsByTagNameNS(String, String) - Method in class il.co.iter.dbdom.DBDocument
Not Implemented Returns a NodeList of all the Elements with a given local name and namespace URI in the order in which they are encountered in a preorder traversal of the Document tree.
getElementsByTagNameNS(String, String) - Method in class il.co.iter.dbdom.DBElement
Not Implemented Returns a NodeList of all the descendant Elements with a given local name and namespace URI in the order in which they are encountered in a preorder traversal of this Element tree.
getElementsByTagNameNS(String, String) - Method in interface org.w3c.dom.Element
Returns a NodeList of all the descendant Elements with a given local name and namespace URI in the order in which they are encountered in a preorder traversal of this Element tree.
getElementsByTagNameNS(String, String) - Method in interface org.w3c.dom.Document
Returns a NodeList of all the Elements with a given local name and namespace URI in the order in which they are encountered in a preorder traversal of the Document tree.
getEntities() - Method in class il.co.iter.dbdom.DBDocumentType
Not Implemented A NamedNodeMap containing the general entities, both external and internal, declared in the DTD.
getEntities() - Method in interface org.w3c.dom.DocumentType
A NamedNodeMap containing the general entities, both external and internal, declared in the DTD.
getFirstChild() - Method in class il.co.iter.dbdom.DBNode
The first child of this node.
getFirstChild() - Method in interface org.w3c.dom.Node
The first child of this node.
getId() - Method in class il.co.iter.dbdom.DBNode
Non-DOMReturns the database ID of this Node.
getImplementation() - Method in class il.co.iter.dbdom.DBDocument
The DOMImplementation object that handles this document.
getImplementation() - Method in interface org.w3c.dom.Document
The DOMImplementation object that handles this document.
getInternalSubset() - Method in class il.co.iter.dbdom.DBDocumentType
Not Implemented The internal subset as a string.The actual content returned depends on how much information is available to the implementation.
getInternalSubset() - Method in interface org.w3c.dom.DocumentType
The internal subset as a string.The actual content returned depends on how much information is available to the implementation.
getLastChild() - Method in class il.co.iter.dbdom.DBNode
The last child of this node.
getLastChild() - Method in interface org.w3c.dom.Node
The last child of this node.
getLength() - Method in class il.co.iter.dbdom.DBDocumentNodeMap
The number of nodes in this map.
getLength() - Method in class il.co.iter.dbdom.DBAttrNodeMap
Not Tested The number of nodes in this map.
getLength() - Method in class il.co.iter.dbdom.DBCharacterData
The number of 16-bit units that are available through data and the substringData method below.
getLength() - Method in class il.co.iter.dbdom.DBChildNodeList
The number of nodes in the list.
getLength() - Method in interface org.w3c.dom.NodeList
The number of nodes in the list.
getLength() - Method in interface org.w3c.dom.NamedNodeMap
The number of nodes in this map.
getLength() - Method in interface org.w3c.dom.CharacterData
The number of 16-bit units that are available through data and the substringData method below.
getLocalName() - Method in class il.co.iter.dbdom.DBNode
Not Implemented Returns the local part of the qualified name of this node.
getLocalName() - Method in interface org.w3c.dom.Node
Returns the local part of the qualified name of this node.
getName() - Method in class il.co.iter.dbdom.DBAttr
Returns the name of this attribute.
getName() - Method in class il.co.iter.dbdom.DBDocumentType
Not Implemented The name of DTD; i.e., the name immediately following the DOCTYPE keyword.
getName() - Method in interface org.w3c.dom.DocumentType
The name of DTD; i.e., the name immediately following the DOCTYPE keyword.
getName() - Method in interface org.w3c.dom.Attr
Returns the name of this attribute.
getNamedItem(String) - Method in class il.co.iter.dbdom.DBDocumentNodeMap
Retrieves a node specified by name.
getNamedItem(String) - Method in class il.co.iter.dbdom.DBAttrNodeMap
Retrieves a node specified by name.
getNamedItem(String) - Method in interface org.w3c.dom.NamedNodeMap
Retrieves a node specified by name.
getNamedItemNS(String, String) - Method in class il.co.iter.dbdom.DBDocumentNodeMap
Retrieves a node specified by local name and namespace URI.
getNamedItemNS(String, String) - Method in class il.co.iter.dbdom.DBAttrNodeMap
Retrieves a node specified by local name and namespace URI.
getNamedItemNS(String, String) - Method in interface org.w3c.dom.NamedNodeMap
Retrieves a node specified by local name and namespace URI.
getNamespaceURI() - Method in class il.co.iter.dbdom.DBNode
Not Implemented The namespace URI of this node, or null if it is unspecified.
getNamespaceURI() - Method in interface org.w3c.dom.Node
The namespace URI of this node, or null if it is unspecified.
getNextSibling() - Method in class il.co.iter.dbdom.DBNode
The node immediately following this node.
getNextSibling() - Method in interface org.w3c.dom.Node
The node immediately following this node.
getNodeName() - Method in class il.co.iter.dbdom.DBNode
The name of this node, depending on its type; see the table above.
getNodeName() - Method in interface org.w3c.dom.Node
The name of this node, depending on its type; see the table above.
getNodeType() - Method in class il.co.iter.dbdom.DBNode
A code representing the type of the underlying object, as defined above.
getNodeType() - Method in interface org.w3c.dom.Node
A code representing the type of the underlying object, as defined above.
getNodeValue() - Method in class il.co.iter.dbdom.DBNode
The value of this node, depending on its type; see the table above.
getNodeValue() - Method in interface org.w3c.dom.Node
The value of this node, depending on its type; see the table above.
getNotationName() - Method in interface org.w3c.dom.Entity
For unparsed entities, the name of the notation for the entity.
getNotations() - Method in class il.co.iter.dbdom.DBDocumentType
Not Implemented A NamedNodeMap containing the notations declared in the DTD.
getNotations() - Method in interface org.w3c.dom.DocumentType
A NamedNodeMap containing the notations declared in the DTD.
getOwnerDocument() - Method in class il.co.iter.dbdom.DBNode
Not Tested The Document object associated with this node.
getOwnerDocument() - Method in interface org.w3c.dom.Node
The Document object associated with this node.
getOwnerElement() - Method in class il.co.iter.dbdom.DBAttr
Not Implemented The Element node this attribute is attached to or null if this attribute is not in use.
getOwnerElement() - Method in interface org.w3c.dom.Attr
The Element node this attribute is attached to or null if this attribute is not in use.
getParentNode() - Method in class il.co.iter.dbdom.DBNode
The parent of this node.
getParentNode() - Method in interface org.w3c.dom.Node
The parent of this node.
getPrefix() - Method in class il.co.iter.dbdom.DBNode
Not Implemented The namespace prefix of this node, or null if it is unspecified.
getPrefix() - Method in interface org.w3c.dom.Node
The namespace prefix of this node, or null if it is unspecified.
getPreviousSibling() - Method in class il.co.iter.dbdom.DBNode
The node immediately preceding this node.
getPreviousSibling() - Method in interface org.w3c.dom.Node
The node immediately preceding this node.
getPublicId() - Method in class il.co.iter.dbdom.DBDocumentType
Not Implemented The public identifier of the external subset.
getPublicId() - Method in interface org.w3c.dom.Entity
The public identifier associated with the entity, if specified.
getPublicId() - Method in interface org.w3c.dom.Notation
The public identifier of this notation.
getPublicId() - Method in interface org.w3c.dom.DocumentType
The public identifier of the external subset.
getSpecified() - Method in class il.co.iter.dbdom.DBAttr
If this attribute was explicitly given a value in the original document, this is true; otherwise, it is false.
getSpecified() - Method in interface org.w3c.dom.Attr
If this attribute was explicitly given a value in the original document, this is true; otherwise, it is false.
getSpName() - Method in class il.co.iter.dbdom.StoredProcedure
Returns the name of the SQL stored procedure
getSQLException() - Method in class il.co.iter.dbdom.DBDOMSqlException
 
getSqlOrDomException(SQLException) - Method in class il.co.iter.dbdom.DBDOMImplementation
Non-DOM Decides if an SQLException was caused by DOMExeption in the database.
getStatements() - Method in class il.co.iter.dbdom.DBDOMImplementation
Non-DOM Returns a map of all known statements.
getSystemId() - Method in class il.co.iter.dbdom.DBDocumentType
Not Implemented The system identifier of the external subset.
getSystemId() - Method in interface org.w3c.dom.Entity
The system identifier associated with the entity, if specified.
getSystemId() - Method in interface org.w3c.dom.Notation
The system identifier of this notation.
getSystemId() - Method in interface org.w3c.dom.DocumentType
The system identifier of the external subset.
getTagName() - Method in class il.co.iter.dbdom.DBElement
The name of the element.
getTagName() - Method in interface org.w3c.dom.Element
The name of the element.
getTarget() - Method in class il.co.iter.dbdom.DBProcessingInstruction
The target of this processing instruction.
getTarget() - Method in interface org.w3c.dom.ProcessingInstruction
The target of this processing instruction.
getValue() - Method in class il.co.iter.dbdom.DBAttr
On retrieval, the value of the attribute is returned as a string.
getValue() - Method in interface org.w3c.dom.Attr
On retrieval, the value of the attribute is returned as a string.
Gui - class il.co.iter.dbdom.samples.Gui.
This class displays a read-only gui for a DBDOM database; It uses classes from the ui package included with Apache xerces distribution.
Gui(DBDOMImplementation) - Constructor for class il.co.iter.dbdom.samples.Gui
 

H

hasAttribute(String) - Method in class il.co.iter.dbdom.DBElement
Not Implemented Returns true when an attribute with a given name is specified on this element or has a default value, false otherwise.
hasAttribute(String) - Method in interface org.w3c.dom.Element
Returns true when an attribute with a given name is specified on this element or has a default value, false otherwise.
hasAttributeNS(String, String) - Method in class il.co.iter.dbdom.DBElement
Not Implemented Returns true when an attribute with a given local name and namespace URI is specified on this element or has a default value, false otherwise.
hasAttributeNS(String, String) - Method in interface org.w3c.dom.Element
Returns true when an attribute with a given local name and namespace URI is specified on this element or has a default value, false otherwise.
hasAttributes() - Method in class il.co.iter.dbdom.DBNode
Not Implemented Returns whether this node (if it is an element) has any attributes.
hasAttributes() - Method in interface org.w3c.dom.Node
Returns whether this node (if it is an element) has any attributes.
hasChildNodes() - Method in class il.co.iter.dbdom.DBNode
Returns whether this node has any children.
hasChildNodes() - Method in interface org.w3c.dom.Node
Returns whether this node has any children.
hasFeature(String, String) - Method in class il.co.iter.dbdom.DBDOMImplementation
Test if the DOM implementation implements a specific feature.
hasFeature(String, String) - Method in interface org.w3c.dom.DOMImplementation
Test if the DOM implementation implements a specific feature.
HIERARCHY_REQUEST_ERR - Static variable in class org.w3c.dom.DOMException
If any node is inserted somewhere it doesn't belong

I

id - Variable in class il.co.iter.dbdom.DBNode
 
il.co.iter.dbdom - package il.co.iter.dbdom
This package provides JDBC wrappers to a DBDOM database. DBDOM is an implementation of W3C DOM in SQL on top of a relational database. For more information on DBDOM, see http://www.iter.co.il.
il.co.iter.dbdom.parsers - package il.co.iter.dbdom.parsers
This package includes calasses that can be used to import an XML document into a DBDOM database.
il.co.iter.dbdom.samples - package il.co.iter.dbdom.samples
This package includes classes that use il.co.iter.dbdom
importNode(Node, boolean) - Method in class il.co.iter.dbdom.DBDocument
Not Implemented Imports a node from another document to this document.
importNode(Node, boolean) - Method in interface org.w3c.dom.Document
Imports a node from another document to this document.
INDEX_SIZE_ERR - Static variable in class org.w3c.dom.DOMException
If index or size is negative, or greater than the allowed value
initStatementIfNull() - Method in class il.co.iter.dbdom.StoredProcedure
This simple operation is implemented as a protected method to allow overriding by subclases.
insertBefore(Node, Node) - Method in class il.co.iter.dbdom.DBNode
Not Tested Inserts the node newChild before the existing child node refChild.
insertBefore(Node, Node) - Method in interface org.w3c.dom.Node
Inserts the node newChild before the existing child node refChild.
insertData(int, String) - Method in class il.co.iter.dbdom.DBCharacterData
Not Implemented Insert a string at the specified 16-bit unit offset.
insertData(int, String) - Method in interface org.w3c.dom.CharacterData
Insert a string at the specified 16-bit unit offset.
INUSE_ATTRIBUTE_ERR - Static variable in class org.w3c.dom.DOMException
If an attempt is made to add an attribute that is already in use elsewhere
INVALID_ACCESS_ERR - Static variable in class org.w3c.dom.DOMException
If a parameter or an operation is not supported by the underlying object.
INVALID_CHARACTER_ERR - Static variable in class org.w3c.dom.DOMException
If an invalid or illegal character is specified, such as in a name.
INVALID_MODIFICATION_ERR - Static variable in class org.w3c.dom.DOMException
If an attempt is made to modify the type of the underlying object.
INVALID_STATE_ERR - Static variable in class org.w3c.dom.DOMException
If an attempt is made to use an object that is not, or is no longer, usable.
isSupported(String, String) - Method in class il.co.iter.dbdom.DBNode
Not Implemented Tests whether the DOM implementation implements a specific feature and that feature is supported by this node.
isSupported(String, String) - Method in interface org.w3c.dom.Node
Tests whether the DOM implementation implements a specific feature and that feature is supported by this node.
item(int) - Method in class il.co.iter.dbdom.DBDocumentNodeMap
Returns the indexth item in the map.
item(int) - Method in class il.co.iter.dbdom.DBAttrNodeMap
Not Tested Returns the indexth item in the map.
item(int) - Method in class il.co.iter.dbdom.DBChildNodeList
Returns the indexth item in the collection.
item(int) - Method in interface org.w3c.dom.NodeList
Returns the indexth item in the collection.
item(int) - Method in interface org.w3c.dom.NamedNodeMap
Returns the indexth item in the map.

M

main(String[]) - Static method in class il.co.iter.dbdom.samples.Gui
Runs the Gui demo.

N

NamedNodeMap - interface org.w3c.dom.NamedNodeMap.
Objects implementing the NamedNodeMap interface are used to represent collections of nodes that can be accessed by name.
NAMESPACE_ERR - Static variable in class org.w3c.dom.DOMException
If an attempt is made to create or change an object in a way which is incorrect with regard to namespaces.
NO_DATA_ALLOWED_ERR - Static variable in class org.w3c.dom.DOMException
If data is specified for a node which does not support data
NO_MODIFICATION_ALLOWED_ERR - Static variable in class org.w3c.dom.DOMException
If an attempt is made to modify an object where modifications are not allowed
Node - interface org.w3c.dom.Node.
The Node interface is the primary datatype for the entire Document Object Model.
nodeExists(long) - Method in class il.co.iter.dbdom.DBDOMImplementation
Non-DOM Tests whether or not a node with the specified id is found in the database
NodeList - interface org.w3c.dom.NodeList.
The NodeList interface provides the abstraction of an ordered collection of nodes, without defining or constraining how this collection is implemented.
normalize() - Method in class il.co.iter.dbdom.DBNode
Not Implemented Puts all Text nodes in the full depth of the sub-tree underneath this Node, including attribute nodes, into a "normal" form where only structure (e.g., elements, comments, processing instructions, CDATA sections, and entity references) separates Text nodes, i.e., there are neither adjacent Text nodes nor empty Text nodes.
normalize() - Method in interface org.w3c.dom.Node
Puts all Text nodes in the full depth of the sub-tree underneath this Node, including attribute nodes, into a "normal" form where only structure (e.g., elements, comments, processing instructions, CDATA sections, and entity references) separates Text nodes, i.e., there are neither adjacent Text nodes nor empty Text nodes.
NOT_FOUND_ERR - Static variable in class org.w3c.dom.DOMException
If an attempt is made to reference a node in a context where it does not exist
NOT_SUPPORTED_ERR - Static variable in class org.w3c.dom.DOMException
If the implementation does not support the requested type of object or operation.
Notation - interface org.w3c.dom.Notation.
This interface represents a notation declared in the DTD.
NOTATION_NODE - Static variable in interface org.w3c.dom.Node
The node is a Notation.

O

org.w3c.dom - package org.w3c.dom
 

P

printStackTrace() - Method in class il.co.iter.dbdom.DBDOMException
Prints the stack backtrace of this exception, and the one that caused it to be thrown, if any, to System.err.
printStackTrace(PrintStream) - Method in class il.co.iter.dbdom.DBDOMException
Prints the stack backtrace of this exception, and the one that caused it to be thrown, if any, to the specified print stream.
printStackTrace(PrintWriter) - Method in class il.co.iter.dbdom.DBDOMException
Prints the stack backtrace of this exception, and the one that caused it to be thrown, if any, to the specified print writer.
PROCESSING_INSTRUCTION_NODE - Static variable in interface org.w3c.dom.Node
The node is a ProcessingInstruction.
ProcessingInstruction - interface org.w3c.dom.ProcessingInstruction.
The ProcessingInstruction interface represents a "processing instruction", used in XML as a way to keep processor-specific information in the text of the document.

R

removeAttribute(String) - Method in class il.co.iter.dbdom.DBElement
Not Implemented Removes an attribute by name.
removeAttribute(String) - Method in interface org.w3c.dom.Element
Removes an attribute by name.
removeAttributeNode(Attr) - Method in class il.co.iter.dbdom.DBElement
Not Implemented Removes the specified attribute node.
removeAttributeNode(Attr) - Method in interface org.w3c.dom.Element
Removes the specified attribute node.
removeAttributeNS(String, String) - Method in class il.co.iter.dbdom.DBElement
Not Implemented Removes an attribute by local name and namespace URI.
removeAttributeNS(String, String) - Method in interface org.w3c.dom.Element
Removes an attribute by local name and namespace URI.
removeChild(Node) - Method in class il.co.iter.dbdom.DBNode
Removes the child node indicated by oldChild from the list of children, and returns it.
removeChild(Node) - Method in interface org.w3c.dom.Node
Removes the child node indicated by oldChild from the list of children, and returns it.
removeNamedItem(String) - Method in class il.co.iter.dbdom.DBDocumentNodeMap
Removes a node specified by name.
removeNamedItem(String) - Method in class il.co.iter.dbdom.DBAttrNodeMap
Not Implemented Removes a node specified by name.
removeNamedItem(String) - Method in interface org.w3c.dom.NamedNodeMap
Removes a node specified by name.
removeNamedItemNS(String, String) - Method in class il.co.iter.dbdom.DBDocumentNodeMap
Removes a node specified by local name and namespace URI.
removeNamedItemNS(String, String) - Method in class il.co.iter.dbdom.DBAttrNodeMap
Removes a node specified by local name and namespace URI.
removeNamedItemNS(String, String) - Method in interface org.w3c.dom.NamedNodeMap
Removes a node specified by local name and namespace URI.
replaceChild(Node, Node) - Method in class il.co.iter.dbdom.DBNode
Not Tested Replaces the child node oldChild with newChild in the list of children, and returns the oldChild node.
replaceChild(Node, Node) - Method in interface org.w3c.dom.Node
Replaces the child node oldChild with newChild in the list of children, and returns the oldChild node.
replaceData(int, int, String) - Method in class il.co.iter.dbdom.DBCharacterData
Not Implemented Replace the characters starting at the specified 16-bit unit offset with the specified string.
replaceData(int, int, String) - Method in interface org.w3c.dom.CharacterData
Replace the characters starting at the specified 16-bit unit offset with the specified string.
retrieveNode(long) - Method in class il.co.iter.dbdom.DBDOMImplementation
Non-DOM Attmpts to read a node from the database.
rollback() - Method in class il.co.iter.dbdom.DBDOMImplementation
Non-DOM Encapsulates Connection.rollback()
rootException - Variable in class il.co.iter.dbdom.DBDOMException
 

S

setAttribute(String, String) - Method in class il.co.iter.dbdom.DBElement
Adds a new attribute.
setAttribute(String, String) - Method in interface org.w3c.dom.Element
Adds a new attribute.
setAttributeNode(Attr) - Method in class il.co.iter.dbdom.DBElement
Adds a new attribute node.
setAttributeNode(Attr) - Method in interface org.w3c.dom.Element
Adds a new attribute node.
setAttributeNodeNS(Attr) - Method in class il.co.iter.dbdom.DBElement
Not Implemented Adds a new attribute.
setAttributeNodeNS(Attr) - Method in interface org.w3c.dom.Element
Adds a new attribute.
setAttributeNS(String, String, String) - Method in class il.co.iter.dbdom.DBElement
Not Implemented Adds a new attribute.
setAttributeNS(String, String, String) - Method in interface org.w3c.dom.Element
Adds a new attribute.
setAutoCommit(boolean) - Method in class il.co.iter.dbdom.DBDOMImplementation
Non-DOM Encapsulates Connection.setAutoCommit(boolean)
setData(String) - Method in class il.co.iter.dbdom.DBCharacterData
 
setData(String) - Method in class il.co.iter.dbdom.DBProcessingInstruction
 
setData(String) - Method in interface org.w3c.dom.CharacterData
 
setData(String) - Method in interface org.w3c.dom.ProcessingInstruction
 
setInt(int, int) - Method in class il.co.iter.dbdom.StoredProcedure
 
setNamedItem(Node) - Method in class il.co.iter.dbdom.DBDocumentNodeMap
Adds a node using its nodeName attribute.
setNamedItem(Node) - Method in class il.co.iter.dbdom.DBAttrNodeMap
Adds a node using its nodeName attribute.
setNamedItem(Node) - Method in interface org.w3c.dom.NamedNodeMap
Adds a node using its nodeName attribute.
setNamedItemNS(Node) - Method in class il.co.iter.dbdom.DBDocumentNodeMap
Adds a node using its namespaceURI and localName.
setNamedItemNS(Node) - Method in class il.co.iter.dbdom.DBAttrNodeMap
Adds a node using its namespaceURI and localName.
setNamedItemNS(Node) - Method in interface org.w3c.dom.NamedNodeMap
Adds a node using its namespaceURI and localName.
setNodeValue(String) - Method in class il.co.iter.dbdom.DBNode
 
setNodeValue(String) - Method in interface org.w3c.dom.Node
 
setNull(int, int) - Method in class il.co.iter.dbdom.StoredProcedure
 
setNull(int, int, String) - Method in class il.co.iter.dbdom.StoredProcedure
 
setPrefix(String) - Method in class il.co.iter.dbdom.DBNode
 
setPrefix(String) - Method in interface org.w3c.dom.Node
 
setString(int, String) - Method in class il.co.iter.dbdom.StoredProcedure
 
setValue(String) - Method in class il.co.iter.dbdom.DBAttr
 
setValue(String) - Method in interface org.w3c.dom.Attr
 
splitText(int) - Method in class il.co.iter.dbdom.DBText
Not Implemented Breaks this node into two nodes at the specified offset, keeping both in the tree as siblings.
splitText(int) - Method in interface org.w3c.dom.Text
Breaks this node into two nodes at the specified offset, keeping both in the tree as siblings.
StoredProcedure - class il.co.iter.dbdom.StoredProcedure.
Represents a stored procedure with a known result set signature in the underlying databas. This class is not currently used. Some of the comments in the class are still highly relevant.
StoredProcedure(DBDOMImplementation, String, int, int) - Constructor for class il.co.iter.dbdom.StoredProcedure
 
substringData(int, int) - Method in class il.co.iter.dbdom.DBCharacterData
Not Implemented Extracts a range of data from the node.
substringData(int, int) - Method in interface org.w3c.dom.CharacterData
Extracts a range of data from the node.
SYNTAX_ERR - Static variable in class org.w3c.dom.DOMException
If an invalid or illegal string is specified.

T

Text - interface org.w3c.dom.Text.
The Text interface inherits from CharacterData and represents the textual content (termed character data in XML) of an Element or Attr.
TEXT_NODE - Static variable in interface org.w3c.dom.Node
The node is a Text node.
toString() - Method in class il.co.iter.dbdom.StoredProcedure
Returns the SQL string that would be used to run this SP against the databse.

U

UNLIMITED - Static variable in class il.co.iter.dbdom.StoredProcedure
Specifies that a stored procedure may return an unlimited number of results per invocation.

W

WRONG_DOCUMENT_ERR - Static variable in class org.w3c.dom.DOMException
If a node is used in a different document than the one that created it (that doesn't support it)

A C D E G H I M N O P R S T U W