Xerces 1.0.0
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 org.apache.xerces.framework.XMLDocumentScanner
Change readers
readerChange(XMLEntityHandler.EntityReader, int) - Method in class org.apache.xerces.framework.XMLDTDScanner
Change readers
readOnly - Variable in class org.apache.xerces.dom.NodeImpl
Read-only property.
readOnly - Variable in class org.apache.xerces.dom.NamedNodeMapImpl
Read-only.
reconcileDefaults() - Method in class org.apache.xerces.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 org.apache.xerces.framework.XMLAttrList
Make the resources of the current attribute list available for reuse.
removeAttribute(String) - Method in class org.apache.xerces.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 org.apache.xerces.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 org.apache.xerces.dom.ElementImpl
Introduced in DOM Level 2.
removeChild(Node) - Method in class org.apache.xerces.dom.NodeImpl
Remove a child from this Node.
removeChild(Node) - Method in class org.apache.xerces.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.
removeEventListener(String, EventListener, boolean) - Method in class org.apache.xerces.dom.NodeImpl
Introduced in DOM Level 2.
removeEventListener(String, EventListener, boolean) - Method in interface org.apache.xerces.domx.events.EventTarget
This method allows the removal of event listeners from the event target.
removeIdentifier(String) - Method in class org.apache.xerces.dom.DocumentImpl
Removes a previously registered element with the specified identifier name.
removeNamedItem(String) - Method in class org.apache.xerces.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, "NOT_FOUND_ERR"); } 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 org.apache.xerces.dom.NamedNodeMapImpl
Introduced in DOM Level 2.
removeNode(Node) - Method in class org.apache.xerces.dom.traversal.NodeIteratorImpl
Fix-up the iterator on a remove.
removeNodeIterator(NodeIterator) - Method in class org.apache.xerces.dom.DocumentImpl
Remove a NodeIterator from the list of NodeIterators.
removeNodeIterators() - Method in class org.apache.xerces.dom.DocumentImpl
Remove all NodeIterators from the list of NodeIterators
removeTreeWalker(TreeWalker) - Method in class org.apache.xerces.dom.DocumentImpl
Remove a TreeWalker from the list of TreeWalkers.
removeTreeWalkers() - Method in class org.apache.xerces.dom.DocumentImpl
Remove all TreeWalkers from the list of TreeWalkers
replaceChild(Node, Node) - Method in class org.apache.xerces.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 org.apache.xerces.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 org.apache.xerces.framework.XMLParser
Report an error.
reportError(Locator, String, int, int, Object[], int) - Method in interface org.apache.xerces.framework.XMLErrorReporter
Report an error detected by a component of the XML parser.
reset() - Method in class org.apache.xerces.parsers.DOMParser
Resets the parser.
reset() - Method in class org.apache.xerces.framework.XMLParser
Reset parser instance so that it can be reused.
reset(StringPool) - Method in class org.apache.xerces.framework.XMLAttrList
Reset this instance to an "empty" state.
reset(StringPool, XMLEntityHandler.CharBuffer) - Method in class org.apache.xerces.framework.XMLDocumentScanner
reset the parser so that the instance can be reused
reset(StringPool, XMLEntityHandler.CharBuffer) - Method in class org.apache.xerces.framework.XMLDTDScanner
Allow XMLDTDScanner to be reused.
resetOrCopy() - Method in class org.apache.xerces.parsers.DOMParser
Resets or copies the parser.
resetOrCopy() - Method in class org.apache.xerces.framework.XMLParser
Reset or copy parser Allows parser instance reuse
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.
RESULT_DUPLICATE_ATTR - Static variable in class org.apache.xerces.framework.XMLDocumentScanner
 
RESULT_FAILURE - Static variable in class org.apache.xerces.framework.XMLDocumentScanner
 
RESULT_SUCCESS - Static variable in class org.apache.xerces.framework.XMLDocumentScanner
 
RevalidatingDOMParser - class org.apache.xerces.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 org.apache.xerces.parsers.RevalidatingDOMParser
 
rootElementSpecified(int) - Method in interface org.apache.xerces.framework.XMLValidator
Check to see if the rootElement matches the root element specified by the DOCTYPE line.
rootNode - Variable in class org.apache.xerces.dom.DeepNodeListImpl
 

Xerces 1.0.0
A B C D E F G H I K L M N O P R S T U V W X