XML for Java EA2
A B C D E F G H I K L M N O P R S T U V W X

R

readerChange(XMLEntityHandler.EntityReader, int) - Method in class com.ibm.xml.framework.XMLDocumentScanner
 
readerChange(XMLEntityHandler.EntityReader, int) - Method in class com.ibm.xml.framework.XMLDTDScanner
 
readOnly - Variable in class com.ibm.xml.dom.NodeImpl
Read-only property.
readOnly - Variable in class com.ibm.xml.dom.NamedNodeMapImpl
Read-only.
reconcileDefaults() - Method in class com.ibm.xml.dom.NamedNodeMapImpl
Subroutine: If this NamedNodeMap is backed by a "defaults" map (eg, if it's being used for Attributes of an XML file validated against a DTD), we need to deal with the risk that those defaults might have changed.
releaseAttrList(int) - Method in class com.ibm.xml.framework.XMLAttrList
 
removeAttribute(String) - Method in class com.ibm.xml.dom.ElementImpl
Remove the named attribute from this Element.
removeAttribute(String) - Method in interface org.w3c.dom.Element
Removes an attribute by name.
removeAttribute(String) - Method in class org.xml.sax.helpers.AttributeListImpl
Remove an attribute from the list.
removeAttributeNode(Attr) - Method in class com.ibm.xml.dom.ElementImpl
Remove the specified attribute/value pair.
removeAttributeNode(Attr) - Method in interface org.w3c.dom.Element
Removes the specified attribute.
removeAttributeNS(String, String) - Method in class com.ibm.xml.dom.ElementImpl
Introduced in DOM Level 2.
removeChild(Node) - Method in class com.ibm.xml.dom.NodeImpl
Remove a child from this Node.
removeChild(Node) - Method in class com.ibm.xml.dom.DocumentImpl
Since insertBefore caches the docElement (and, currently, docType), removeChild has to know how to undo the cache
removeChild(Node) - Method in interface org.w3c.dom.Node
Removes the child node indicated by oldChild from the list of children, and returns it.
removeIdentifier(String) - Method in class com.ibm.xml.dom.DocumentImpl
Removes a previously registered element with the specified identifier name.
removeNamedItem(String) - Method in class com.ibm.xml.dom.NamedNodeMapImpl
public Node removeNamedItem(String name) throws DOMException { int i = findNamePoint(name); //int i = findNamePoint(null, name); if (i < 0) { throw new DOMExceptionImpl(DOMException.NOT_FOUND_ERR, null); } Node n = (Node)(nodes.elementAt(i)); // If there's a default, add it instead Node d; if (defaults != null && (d = defaults.getNamedItem(name)) != null) { NodeImpl clone = (NodeImpl)d.cloneNode(true); clone.parentNode = element; nodes.setElementAt(clone, i); } else { nodes.removeElementAt(i); } // remove owning element if (element != null) { ((NodeImpl)n).parentNode = null; } ++changes; return n; } // removeNamedItem(String):Node /
removeNamedItem(String) - Method in interface org.w3c.dom.NamedNodeMap
Removes a node specified by name.
removeNamedItemNS(String, String) - Method in class com.ibm.xml.dom.NamedNodeMapImpl
Introduced in DOM Level 2.
removeNode(Node) - Method in class com.ibm.xml.dom.traversal.NodeIteratorImpl
Fix-up the iterator on a remove.
removeNodeIterator(NodeIterator) - Method in class com.ibm.xml.dom.DocumentImpl
Remove a NodeIterator from the list of NodeIterators.
removeNodeIterators() - Method in class com.ibm.xml.dom.DocumentImpl
Remove all NodeIterators from the list of NodeIterators
removeTreeWalker(TreeWalker) - Method in class com.ibm.xml.dom.DocumentImpl
Remove a TreeWalker from the list of TreeWalkers.
removeTreeWalkers() - Method in class com.ibm.xml.dom.DocumentImpl
Remove all TreeWalkers from the list of TreeWalkers
replaceChild(Node, Node) - Method in class com.ibm.xml.dom.NodeImpl
Make newChild occupy the location that oldChild used to have.
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 com.ibm.xml.dom.CharacterDataImpl
Replace a series of characters at the specified (zero-based) offset with a new string, NOT necessarily of the same length.
replaceData(int, int, String) - Method in interface org.w3c.dom.CharacterData
Replace the characters starting at the specified character offset with the specified string.
reportError(Locator, String, int, int, Object[], int) - Method in class com.ibm.xml.framework.XMLParser
Report an error.
reportError(Locator, String, int, int, Object[], int) - Method in interface com.ibm.xml.framework.XMLErrorReporter
reports an error emitted by a component of the XML parser.
reportFatalXMLError(int, int) - Method in class com.ibm.xml.framework.XMLDocumentScanner
 
reportFatalXMLError(int, int) - Method in class com.ibm.xml.framework.XMLDTDScanner
 
reportFatalXMLError(int, int, int) - Method in class com.ibm.xml.framework.XMLDocumentScanner
 
reportFatalXMLError(int, int, int) - Method in class com.ibm.xml.framework.XMLDTDScanner
 
reportFatalXMLError(int, int, int, int) - Method in class com.ibm.xml.framework.XMLDocumentScanner
 
reportFatalXMLError(int, int, int, int) - Method in class com.ibm.xml.framework.XMLDTDScanner
 
reportFatalXMLError(int, int, String) - Method in class com.ibm.xml.framework.XMLDocumentScanner
 
reportFatalXMLError(int, int, String) - Method in class com.ibm.xml.framework.XMLDTDScanner
 
reportFatalXMLError(int, int, String, String) - Method in class com.ibm.xml.framework.XMLDocumentScanner
 
reportFatalXMLError(int, int, String, String) - Method in class com.ibm.xml.framework.XMLDTDScanner
 
reportFatalXMLError(int, int, String, String, String) - Method in class com.ibm.xml.framework.XMLDocumentScanner
 
reportFatalXMLError(int, int, String, String, String) - Method in class com.ibm.xml.framework.XMLDTDScanner
 
reset() - Method in class com.ibm.xml.parsers.DOMParser
Resets the parser.
reset() - Method in class com.ibm.xml.framework.XMLDocumentScanner
 
reset() - Method in class com.ibm.xml.framework.XMLParser
Reset parser.
reset(StringPool) - Method in class com.ibm.xml.framework.XMLAttrList
 
reset(StringPool, XMLErrorReporter, XMLDTDEntityHandler) - Method in class com.ibm.xml.framework.XMLDTDScanner
 
resetOrCopy() - Method in class com.ibm.xml.parsers.DOMParser
Resets or copies the parser.
resetOrCopy() - Method in class com.ibm.xml.framework.XMLDocumentScanner
 
resetOrCopy() - Method in class com.ibm.xml.framework.XMLParser
Reset or copy parser.
resolveEntity(String, String) - Method in class org.xml.sax.HandlerBase
Resolve an external entity.
resolveEntity(String, String) - Method in interface org.xml.sax.EntityResolver
Allow the application to resolve external entities.
restoreScannerState(int) - Method in class com.ibm.xml.framework.XMLDTDScanner
 
RevalidatingDOMParser - class com.ibm.xml.parsers.RevalidatingDOMParser.
This class is a validating DOM parser which can also "revalidate" a DOM subtree after the document has been parsed.
RevalidatingDOMParser() - Constructor for class com.ibm.xml.parsers.RevalidatingDOMParser
 
rootElementSpecified(int) - Method in interface com.ibm.xml.framework.XMLValidator
 
rootNode - Variable in class com.ibm.xml.dom.DeepNodeListImpl
 

XML for Java EA2
A B C D E F G H I K L M N O P R S T U V W X