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

A

addAttribute(String, String, String) - Method in class org.xml.sax.helpers.AttributeListImpl
Deprecated. Add an attribute to an attribute list.
addAttribute(String, String, String, String, String) - Method in class org.xml.sax.helpers.AttributesImpl
Add an attribute to the end of the list.
addDirectoryMapping(Dictionary, String[][], File) - Static method in class gnu.xml.util.Resolver
Updates a dictionary used to map PUBLIC identifiers to file names, so that it uses the mappings in a specified directory.
addEventListener(String, EventListener, boolean) - Method in class gnu.xml.dom.DomNode
DOM L2 (Events) Registers an event listener's interest in a class of events.
appendChild(Node) - Method in class gnu.xml.dom.DomNode
DOM L1 Appends the specified node to this node's list of children.
appendChild(Node) - Method in class gnu.xml.dom.DomDocument
DOM L1 Appends the specified node to this node's list of children, enforcing the constraints that there be only one root element and one document type child.
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 gnu.xml.dom.DomCharacterData
DOM L1 Appends the specified data to the value of this 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.
attributeDecl(String, String, String, String, String) - Method in class gnu.xml.pipeline.EventFilter
SAX2: passes this callback to the next consumer, if any
attributeDecl(String, String, String, String, String) - Method in class gnu.xml.pipeline.TeeConsumer
 
attributeDecl(String, String, String, String, String) - Method in class gnu.xml.pipeline.DomConsumer.Handler
 
attributeDecl(String, String, String, String, String) - Method in class gnu.xml.pipeline.ValidationConsumer
DecllHandler Records attribute declaration for later use in validating document content, and checks validity constraints that are applicable to attribute declarations.
attributeDecl(String, String, String, String, String) - Method in class gnu.xml.util.XMLWriter
SAX2: called on attribute declarations
attributeDecl(String, String, String, String, String) - Method in class gnu.xml.util.DefaultHandler
SAX2: called on attribute declarations
attributeDecl(String, String, String, String, String) - Method in interface org.xml.sax.ext.DeclHandler
Report an attribute type declaration.
AttributeList - interface org.xml.sax.AttributeList.
Deprecated. This interface has been replaced by the SAX2 Attributes interface, which includes Namespace support.
AttributeListImpl - class org.xml.sax.helpers.AttributeListImpl.
Deprecated. This class implements a deprecated interface, AttributeList; that interface has been replaced by Attributes, which is implemented in the AttributesImpl helper class.
AttributeListImpl() - Constructor for class org.xml.sax.helpers.AttributeListImpl
Deprecated. Create an empty attribute list.
AttributeListImpl(AttributeList) - Constructor for class org.xml.sax.helpers.AttributeListImpl
Deprecated. Construct a persistent copy of an existing attribute list.
Attributes - interface org.xml.sax.Attributes.
Interface for a list of XML attributes.
AttributesImpl - class org.xml.sax.helpers.AttributesImpl.
Default implementation of the Attributes interface.
AttributesImpl() - Constructor for class org.xml.sax.helpers.AttributesImpl
Construct a new, empty AttributesImpl object.
AttributesImpl(Attributes) - Constructor for class org.xml.sax.helpers.AttributesImpl
Copy an existing Attributes object.

B

bind(XMLReader, EventConsumer) - Static method in class gnu.xml.pipeline.EventFilter
Binds the standard SAX2 handlers from the specified consumer pipeline to the specified producer.

C

CallFilter - class gnu.xml.pipeline.CallFilter.
Input is sent as an XML request to given URI, and the output of this filter is the parsed response to that request.
CallFilter(String, EventConsumer) - Constructor for class gnu.xml.pipeline.CallFilter
Initializes a call filter so that its inputs are sent to the specified URI, and its outputs are sent to the next consumer provided.
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.
characters(char[], int, int) - Method in class gnu.xml.pipeline.EventFilter
SAX2: passes this callback to the next consumer, if any
characters(char[], int, int) - Method in class gnu.xml.pipeline.TeeConsumer
 
characters(char[], int, int) - Method in class gnu.xml.pipeline.DomConsumer.Handler
 
characters(char[], int, int) - Method in class gnu.xml.pipeline.ValidationConsumer
ContentHandler Reports a validity error if the element's content model does not permit character data.
characters(char[], int, int) - Method in class gnu.xml.pipeline.WellFormednessFilter
 
characters(char[], int, int) - Method in class gnu.xml.util.XMLWriter
SAX1: reports content characters
characters(char[], int, int) - Method in interface org.xml.sax.ContentHandler
Receive notification of character data.
characters(char[], int, int) - Method in class org.xml.sax.HandlerBase
Deprecated. Receive notification of character data inside an element.
characters(char[], int, int) - Method in interface org.xml.sax.DocumentHandler
Deprecated. Receive notification of character data.
characters(char[], int, int) - Method in class org.xml.sax.helpers.DefaultHandler
Receive notification of character data inside an element.
characters(char[], int, int) - Method in class org.xml.sax.helpers.XMLReaderAdapter
Adapt a SAX2 characters event.
characters(char[], int, int) - Method in class org.xml.sax.helpers.XMLFilterImpl
Filter a character data event.
characters(char[], int, int) - Method in class org.xml.sax.helpers.ParserAdapter
Adapt a SAX1 characters event.
clear() - Method in class org.xml.sax.helpers.AttributeListImpl
Deprecated. Clear the attribute list.
clear() - Method in class org.xml.sax.helpers.AttributesImpl
Clear the attribute list for reuse.
clone() - Method in class gnu.xml.dom.DomNode
Clones this node; roughly equivalent to cloneNode(false).
clone() - Method in class gnu.xml.dom.DomAttr
Shallow clone of the attribute, breaking all ties with any elements.
clone() - Method in class gnu.xml.dom.DomElement
Shallow clone of the element, except that associated attributes are (deep) cloned.
cloneNode(boolean) - Method in class gnu.xml.dom.DomNode
DOM L1 Returns a clone of this node which optionally includes cloned versions of child 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.
comment(char[], int, int) - Method in class gnu.xml.pipeline.EventFilter
SAX2: passes this callback to the next consumer, if any
comment(char[], int, int) - Method in class gnu.xml.pipeline.TeeConsumer
 
comment(char[], int, int) - Method in class gnu.xml.pipeline.DomConsumer.Handler
 
comment(char[], int, int) - Method in class gnu.xml.pipeline.WellFormednessFilter
 
comment(char[], int, int) - Method in class gnu.xml.util.XMLWriter
SAX2: called when comments are parsed.
comment(char[], int, int) - Method in class gnu.xml.util.DefaultHandler
SAX2: called when comments are parsed
comment(char[], int, int) - Method in interface org.xml.sax.ext.LexicalHandler
Report an XML comment anywhere in the document.
consumer - Variable in class gnu.xml.pipeline.DomConsumer.Handler
 
Consumer - class gnu.xml.dom.Consumer.
Event consumer which constructs DOM documents using the implementation in this package, using SAX2 events.
Consumer() - Constructor for class gnu.xml.dom.Consumer
Constructs an unconfigured event consumer.
ContentHandler - interface org.xml.sax.ContentHandler.
Receive notification of the logical content of a document.
createAttribute(String) - Method in class gnu.xml.dom.DomDocument
DOM L1 Returns a newly created attribute with the specified name.
createAttribute(String) - Method in interface org.w3c.dom.Document
Creates an Attr of the given name.
createAttributeNS(String, String) - Method in class gnu.xml.dom.DomDocument
DOM L2 Returns a newly created attribute with the specified name and namespace information.
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 gnu.xml.dom.DomDocument
DOM L1 Returns a newly created CDATA section node with the specified value.
createCDATASection(String) - Method in interface org.w3c.dom.Document
Creates a CDATASection node whose value is the specified string.
createComment(String) - Method in class gnu.xml.dom.DomDocument
DOM L1 Returns a newly created comment node with the specified value.
createComment(String) - Method in interface org.w3c.dom.Document
Creates a Comment node given the specified string.
createDocument(String, String, DocumentType) - Method in class gnu.xml.dom.DomImpl
DOM L2 Creates and returns a Document, populated only with a root element and optionally a document type (if that was provided).
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 gnu.xml.dom.DomDocument
DOM L1 Returns a newly created document fragment.
createDocumentFragment() - Method in interface org.w3c.dom.Document
Creates an empty DocumentFragment object.
createDocumentType(String, String, String) - Method in class gnu.xml.dom.DomImpl
DOM L2 Creates and returns a DocumentType, associated with this implementation.
createDocumentType(String, String, String) - Method in interface org.w3c.dom.DOMImplementation
Creates an empty DocumentType node.
createElement(String) - Method in class gnu.xml.dom.DomDocument
DOM L1 Returns a newly created element with the specified name.
createElement(String) - Method in interface org.w3c.dom.Document
Creates an element of the type specified.
createElementNS(String, String) - Method in class gnu.xml.dom.DomDocument
DOM L2 Returns a newly created element with the specified name and namespace information.
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 gnu.xml.dom.DomDocument
DOM L1 Returns a newly created reference to the specified entity.
createEntityReference(String) - Method in interface org.w3c.dom.Document
Creates an EntityReference object.
createEvent(String) - Method in class gnu.xml.dom.DomNode
DOM L2 (Events) Returns an instance of the specified type of event object.
createNodeIterator(Node, int, NodeFilter, boolean) - Method in class gnu.xml.dom.DomDocument
DOM L2 (Traversal) Returns a newly created node iterator.
createPipeline(String) - Static method in class gnu.xml.pipeline.PipelineFactory
Creates a simple pipeline according to the description string passed in.
createPipeline(String[], EventConsumer) - Static method in class gnu.xml.pipeline.PipelineFactory
Extends an existing pipeline by prepending a pre-tokenized filter pipeline to the specified consumer.
createPipeline(String, EventConsumer) - Static method in class gnu.xml.pipeline.PipelineFactory
Extends an existing pipeline by prepending the filter pipeline to the specified consumer.
createProcessingInstruction(String, String) - Method in class gnu.xml.dom.DomDocument
DOM L1 Returns a newly created processing instruction.
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 gnu.xml.dom.DomDocument
DOM L1 Returns a newly created text node with the specified value.
createTextNode(String) - Method in interface org.w3c.dom.Document
Creates a Text node given the specified string.
createTreeWalker(Node, int, NodeFilter, boolean) - Method in class gnu.xml.dom.DomDocument
 
createXMLReader() - Static method in class org.xml.sax.helpers.XMLReaderFactory
Attempt to create an XML reader.
createXMLReader(String) - Static method in class org.xml.sax.helpers.XMLReaderFactory
Attempt to create an XML reader from a class name.

D

DECL_HANDLER - Static variable in class gnu.xml.pipeline.EventFilter
SAX2 property identifier for DeclHandler events
declareEntity(String, String, String, String) - Method in class gnu.xml.dom.DomDoctype
Records the declaration of a general entity in this DocumentType.
declareNotation(String, String, String) - Method in class gnu.xml.dom.DomDoctype
Records the declaration of a notation in this DocumentType.
declarePrefix(String, String) - Method in class org.xml.sax.helpers.NamespaceSupport
Declare a Namespace prefix.
DeclHandler - interface org.xml.sax.ext.DeclHandler.
SAX2 extension handler for DTD declaration events.
DefaultHandler - class gnu.xml.util.DefaultHandler.
This class extends the SAX base handler class to support the SAX2 Lexical and Declaration handlers.
DefaultHandler - class org.xml.sax.helpers.DefaultHandler.
Default base class for SAX2 event handlers.
DefaultHandler() - Constructor for class gnu.xml.util.DefaultHandler
Constructs a handler which ignores all parsing events.
DefaultHandler() - Constructor for class org.xml.sax.helpers.DefaultHandler
 
deleteData(int, int) - Method in class gnu.xml.dom.DomCharacterData
DOM L1 Modifies the value of this node.
deleteData(int, int) - Method in interface org.w3c.dom.CharacterData
Remove a range of 16-bit units from the node.
detach() - Method in class gnu.xml.dom.DomIterator
DOM L2 Flags the iterator as done, unregistering its event listener so that the iterator can be garbage collected without relying on weak references (a "Java 2" feature) in the event subsystem.
dispatchEvent(Event) - Method in class gnu.xml.dom.DomNode
DOM L2 (Events) Delivers an event to all relevant listeners, returning true if the caller should perform their default action.
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.
DocumentBuilder - class javax.xml.parsers.DocumentBuilder.
DocumentBuilder
DocumentBuilder() - Constructor for class javax.xml.parsers.DocumentBuilder
 
DocumentBuilderFactory - class javax.xml.parsers.DocumentBuilderFactory.
DocumentBuilderFactory is used to resolve the problem that the W3C DOM APIs don't include portable bootstrapping.
DocumentBuilderFactory() - Constructor for class javax.xml.parsers.DocumentBuilderFactory
 
DocumentFragment - interface org.w3c.dom.DocumentFragment.
DocumentFragment is a "lightweight" or "minimal" Document object.
DocumentHandler - interface org.xml.sax.DocumentHandler.
Deprecated. This interface has been replaced by the SAX2 ContentHandler interface, which includes Namespace support.
DocumentType - interface org.w3c.dom.DocumentType.
Each Document has a doctype attribute whose value is either null or a DocumentType object.
DomAttr - class gnu.xml.dom.DomAttr.
"Attr" implementation.
DomAttr(Document, String, String) - Constructor for class gnu.xml.dom.DomAttr
Constructs an Attr node associated with the specified document.
DomCDATA - class gnu.xml.dom.DomCDATA.
"CDATASection" implementation.
DomCDATA(Document, String) - Constructor for class gnu.xml.dom.DomCDATA
Constructs a CDATA section node associated with the specified document and holding the specified data.
DomCharacterData - class gnu.xml.dom.DomCharacterData.
Abstract "CharacterData" implementation.
DomComment - class gnu.xml.dom.DomComment.
"Comment" implementation.
DomComment(Document, String) - Constructor for class gnu.xml.dom.DomComment
Constructs a comment node associated with the specified document and holding the specified data.
DomConsumer - class gnu.xml.pipeline.DomConsumer.
This consumer builds a DOM Document from its input, acting either as a pipeline terminus or as an intermediate buffer.
DomConsumer.Handler - class gnu.xml.pipeline.DomConsumer.Handler.
Class used to intercept various parsing events and use them to populate a DOM document.
DomConsumer.Handler(DomConsumer) - Constructor for class gnu.xml.pipeline.DomConsumer.Handler
Subclasses may use SAX2 events to provide additional behaviors in the resulting DOM.
DomConsumer(Class) - Constructor for class gnu.xml.pipeline.DomConsumer
Configures this consumer to use the specified implementation of DOM when constructing its result value.
DomConsumer(Class, EventConsumer) - Constructor for class gnu.xml.pipeline.DomConsumer
Configures this consumer as a buffer/filter, using the system default DOM implementation when constructing its result value.
DomDoctype - class gnu.xml.dom.DomDoctype.
"DocumentType" implementation (with no extensions for supporting any document typing information).
DomDoctype(DOMImplementation, String, String, String, String) - Constructor for class gnu.xml.dom.DomDoctype
Constructs a DocumentType node associated with the specified implementation, with the specified name.
DomDocument - class gnu.xml.dom.DomDocument.
"Document" and "DocumentTraversal" implementation.
DomDocument() - Constructor for class gnu.xml.dom.DomDocument
Constructs a Document node, associating it with an instance of the DomImpl class.
DomDocument(DOMImplementation) - Constructor for class gnu.xml.dom.DomDocument
Constructs a Document node, associating it with the specified implementation.
DomElement - class gnu.xml.dom.DomElement.
"Element" implementation.
DomElement(Document, String, String) - Constructor for class gnu.xml.dom.DomElement
Constructs an Element node associated with the specified document.
DomEntity - class gnu.xml.dom.DomEntity.
"Entity" implementation.
DomEntity(Document, String, String, String, String) - Constructor for class gnu.xml.dom.DomEntity
Constructs an Entity node associated with the specified document, with the specified descriptive data.
DomEntityReference - class gnu.xml.dom.DomEntityReference.
"EntityReference" implementation (reference to parsed entity).
DomEntityReference(Document, String) - Constructor for class gnu.xml.dom.DomEntityReference
Constructs an EntityReference node associated with the specified document.
DomEvent - class gnu.xml.dom.DomEvent.
"Event" implementation.
DomEvent.DomMutationEvent - class gnu.xml.dom.DomEvent.DomMutationEvent.
"MutationEvent" implementation.
DomEvent.DomMutationEvent(String) - Constructor for class gnu.xml.dom.DomEvent.DomMutationEvent
Constructs an uninitialized mutation event.
DomEvent.DomUIEvent - class gnu.xml.dom.DomEvent.DomUIEvent.
"UIEvent" implementation.
DomEvent.DomUIEvent(String) - Constructor for class gnu.xml.dom.DomEvent.DomUIEvent
Constructs an uninitialized User Interface (UI) event
DomEvent(String) - Constructor for class gnu.xml.dom.DomEvent
Constructs, but does not initialize, an event.
DomEx - exception gnu.xml.dom.DomEx.
DOMException implementation.
DomEx(short) - Constructor for class gnu.xml.dom.DomEx
Constructs an exception, with the diagnostic message corresponding to the specified code.
DomEx(short, String, Node, int) - Constructor for class gnu.xml.dom.DomEx
Constructs an exception, with the diagnostic message corresponding to the specified code and additional information as provided.
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
 
DomExtern - class gnu.xml.dom.DomExtern.
Abstract implemention of nodes describing external DTD-related objects.
DomFragment - class gnu.xml.dom.DomFragment.
"DocumentFragment" implementation.
DomFragment(Document) - Constructor for class gnu.xml.dom.DomFragment
Constructs a DocumentFragment node associated with the specified document.
DomImpl - class gnu.xml.dom.DomImpl.
"DOMImplementation" implementation.
DomImpl() - Constructor for class gnu.xml.dom.DomImpl
Constructs a DOMImplementation object which supports "XML" and other DOM Level 2 features.
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.
DomIterator - class gnu.xml.dom.DomIterator.
"NodeIterator" implementation, usable with any L2 DOM which supports MutationEvents.
DomIterator(Node, int, NodeFilter, boolean) - Constructor for class gnu.xml.dom.DomIterator
Constructs and initializes an iterator.
DomNamedNodeMap - class gnu.xml.dom.DomNamedNodeMap.
"NamedNodeMap" implementation.
DomNamedNodeMap(Document) - Constructor for class gnu.xml.dom.DomNamedNodeMap
Constructs an empty map associated with the specified document.
DomNode - class gnu.xml.dom.DomNode.
"Node", "EventTarget", and "DocumentEvent" implementation.
DomNode(Document, short) - Constructor for class gnu.xml.dom.DomNode
Constructs a node and associates it with its owner.
DomNotation - class gnu.xml.dom.DomNotation.
"Notation" implementation.
DomNotation(Document, String, String, String) - Constructor for class gnu.xml.dom.DomNotation
Constructs a Notation node associated with the specified document, with the specified descriptive data.
DomNsNode - class gnu.xml.dom.DomNsNode.
Abstract implemention of namespace support.
DomParser - class gnu.xml.util.DomParser.
This parser emits SAX2 parsing events as it traverses a DOM tree, using any conformant implementation of DOM.
DomParser() - Constructor for class gnu.xml.util.DomParser
Constructs an unitialized SAX2 parser.
DomParser(Node) - Constructor for class gnu.xml.util.DomParser
Constructs an SAX2 parser initialized to traverse the specified DOM tree.
DomPI - class gnu.xml.dom.DomPI.
"ProcessingInstruction" (PI) implementation.
DomPI(Document, String, String) - Constructor for class gnu.xml.dom.DomPI
Constructs a ProcessingInstruction node associated with the specified document, with the specified data.
DOMSTRING_SIZE_ERR - Static variable in class org.w3c.dom.DOMException
If the specified range of text does not fit into a DOMString
DomText - class gnu.xml.dom.DomText.
"Text" implementation.
DomText(Document, String) - Constructor for class gnu.xml.dom.DomText
Constructs a text node associated with the specified document and holding the specified data.
DoParse - class gnu.xml.util.DoParse.
This class provides a driver which may be invoked from the command line to process a document using a SAX2 parser and a specified XML processing pipeline.
DTDHandler - interface org.xml.sax.DTDHandler.
Receive notification of basic DTD-related events.

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.
elementDecl(String, String) - Method in class gnu.xml.pipeline.EventFilter
SAX2: passes this callback to the next consumer, if any
elementDecl(String, String) - Method in class gnu.xml.pipeline.TeeConsumer
 
elementDecl(String, String) - Method in class gnu.xml.pipeline.DomConsumer.Handler
 
elementDecl(String, String) - Method in class gnu.xml.pipeline.ValidationConsumer
DecllHandler Records the element declaration for later use when checking document content, and checks validity constraints that apply to element declarations.
elementDecl(String, String) - Method in class gnu.xml.util.XMLWriter
SAX2: called on element declarations
elementDecl(String, String) - Method in class gnu.xml.util.DefaultHandler
SAX2: called on element declarations
elementDecl(String, String) - Method in interface org.xml.sax.ext.DeclHandler
Report an element type declaration.
endCDATA() - Method in class gnu.xml.pipeline.EventFilter
SAX2: passes this callback to the next consumer, if any
endCDATA() - Method in class gnu.xml.pipeline.TeeConsumer
 
endCDATA() - Method in class gnu.xml.pipeline.DomConsumer.Handler
 
endCDATA() - Method in class gnu.xml.pipeline.WellFormednessFilter
 
endCDATA() - Method in class gnu.xml.util.XMLWriter
SAX2: called after parsing CDATA characters
endCDATA() - Method in class gnu.xml.util.DefaultHandler
SAX2: called after parsing CDATA characters
endCDATA() - Method in interface org.xml.sax.ext.LexicalHandler
Report the end of a CDATA section.
endDocument() - Method in class gnu.xml.pipeline.EventFilter
SAX2: passes this callback to the next consumer, if any
endDocument() - Method in class gnu.xml.pipeline.LinkFilter
Forgets about any base URI information that may be recorded.
endDocument() - Method in class gnu.xml.pipeline.NSFilter
 
endDocument() - Method in class gnu.xml.pipeline.TeeConsumer
 
endDocument() - Method in class gnu.xml.pipeline.DomConsumer.Handler
 
endDocument() - Method in class gnu.xml.pipeline.ValidationConsumer
ContentHandler Checks whether all ID values that were referenced have been declared, and releases all resources.
endDocument() - Method in class gnu.xml.pipeline.WellFormednessFilter
 
endDocument() - Method in class gnu.xml.util.XMLWriter
SAX1: indicates the completion of a parse
endDocument() - Method in interface org.xml.sax.ContentHandler
Receive notification of the end of a document.
endDocument() - Method in class org.xml.sax.HandlerBase
Deprecated. Receive notification of the end of the document.
endDocument() - Method in interface org.xml.sax.DocumentHandler
Deprecated. Receive notification of the end of a document.
endDocument() - Method in class org.xml.sax.helpers.DefaultHandler
Receive notification of the end of the document.
endDocument() - Method in class org.xml.sax.helpers.XMLReaderAdapter
End document event.
endDocument() - Method in class org.xml.sax.helpers.XMLFilterImpl
Filter an end document event.
endDocument() - Method in class org.xml.sax.helpers.ParserAdapter
Adapt a SAX1 end document event.
endDTD() - Method in class gnu.xml.pipeline.EventFilter
SAX2: passes this callback to the next consumer, if any
endDTD() - Method in class gnu.xml.pipeline.TeeConsumer
 
endDTD() - Method in class gnu.xml.pipeline.DomConsumer.Handler
 
endDTD() - Method in class gnu.xml.pipeline.ValidationConsumer
LexicalHandler Verifies that all referenced notations and unparsed entities have been declared.
endDTD() - Method in class gnu.xml.pipeline.WellFormednessFilter
 
endDTD() - Method in class gnu.xml.util.XMLWriter
SAX2: called after the doctype is parsed
endDTD() - Method in class gnu.xml.util.DefaultHandler
SAX2: called after the doctype is parsed
endDTD() - Method in interface org.xml.sax.ext.LexicalHandler
Report the end of DTD declarations.
endElement(String) - Method in class org.xml.sax.HandlerBase
Deprecated. Receive notification of the end of an element.
endElement(String) - Method in interface org.xml.sax.DocumentHandler
Deprecated. Receive notification of the end of an element.
endElement(String) - Method in class org.xml.sax.helpers.ParserAdapter
Adapt a SAX1 end element event.
endElement(String, String, String) - Method in class gnu.xml.pipeline.EventFilter
SAX2: passes this callback to the next consumer, if any
endElement(String, String, String) - Method in class gnu.xml.pipeline.NSFilter
 
endElement(String, String, String) - Method in class gnu.xml.pipeline.TeeConsumer
 
endElement(String, String, String) - Method in class gnu.xml.pipeline.DomConsumer.Handler
 
endElement(String, String, String) - Method in class gnu.xml.pipeline.ValidationConsumer
ContentHandler Reports a validity error if the element's content model does not permit end-of-element yet, or a well formedness error if there was no matching startElement call.
endElement(String, String, String) - Method in class gnu.xml.pipeline.WellFormednessFilter
 
endElement(String, String, String) - Method in class gnu.xml.util.XMLWriter
SAX2: indicates the end of an element
endElement(String, String, String) - Method in interface org.xml.sax.ContentHandler
Receive notification of the end of an element.
endElement(String, String, String) - Method in class org.xml.sax.helpers.DefaultHandler
Receive notification of the end of an element.
endElement(String, String, String) - Method in class org.xml.sax.helpers.XMLReaderAdapter
Adapt a SAX2 end element event.
endElement(String, String, String) - Method in class org.xml.sax.helpers.XMLFilterImpl
Filter an end element event.
endEntity(String) - Method in class gnu.xml.pipeline.EventFilter
SAX2: passes this callback to the next consumer, if any.
endEntity(String) - Method in class gnu.xml.pipeline.TeeConsumer
 
endEntity(String) - Method in class gnu.xml.pipeline.DomConsumer.Handler
 
endEntity(String) - Method in class gnu.xml.util.XMLWriter
SAX2: called after parsing a general entity in content
endEntity(String) - Method in class gnu.xml.util.DefaultHandler
SAX2: called after parsing a general entity in content
endEntity(String) - Method in interface org.xml.sax.ext.LexicalHandler
Report the end of an entity.
endPrefixMapping(String) - Method in class gnu.xml.pipeline.EventFilter
SAX2: passes this callback to the next consumer, if any
endPrefixMapping(String) - Method in class gnu.xml.pipeline.NSFilter
This call is not passed to the next consumer in the chain.
endPrefixMapping(String) - Method in class gnu.xml.pipeline.TeeConsumer
 
endPrefixMapping(String) - Method in class gnu.xml.pipeline.DomConsumer.Handler
 
endPrefixMapping(String) - Method in class gnu.xml.util.XMLWriter
SAX2: ignored.
endPrefixMapping(String) - Method in interface org.xml.sax.ContentHandler
End the scope of a prefix-URI mapping.
endPrefixMapping(String) - Method in class org.xml.sax.helpers.DefaultHandler
Receive notification of the end of a Namespace mapping.
endPrefixMapping(String) - Method in class org.xml.sax.helpers.XMLReaderAdapter
Adapt a SAX2 end prefix mapping event.
endPrefixMapping(String) - Method in class org.xml.sax.helpers.XMLFilterImpl
Filter an end Namespace prefix mapping event.
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.
EntityResolver - interface org.xml.sax.EntityResolver.
Basic interface for resolving entities.
error(SAXParseException) - Method in interface org.xml.sax.ErrorHandler
Receive notification of a recoverable error.
error(SAXParseException) - Method in class org.xml.sax.HandlerBase
Deprecated. Receive notification of a recoverable parser error.
error(SAXParseException) - Method in class org.xml.sax.helpers.DefaultHandler
Receive notification of a recoverable parser error.
error(SAXParseException) - Method in class org.xml.sax.helpers.XMLFilterImpl
Filter an error event.
ErrorHandler - interface org.xml.sax.ErrorHandler.
Basic interface for SAX error handlers.
EventConsumer - interface gnu.xml.pipeline.EventConsumer.
Collects the event consumption apparatus of a SAX pipeline stage.
EventFilter - class gnu.xml.pipeline.EventFilter.
A customizable event consumer, used to assemble various kinds of filters using SAX handlers and an optional second consumer.
EventFilter() - Constructor for class gnu.xml.pipeline.EventFilter
Initializes all handlers to null.
EventFilter(EventConsumer) - Constructor for class gnu.xml.pipeline.EventFilter
Handlers that are not otherwise set will default to those from the specified consumer, making it easy to pass events through.
externalEntityDecl(String, String, String) - Method in class gnu.xml.pipeline.EventFilter
SAX2: passes this callback to the next consumer, if any
externalEntityDecl(String, String, String) - Method in class gnu.xml.pipeline.TeeConsumer
 
externalEntityDecl(String, String, String) - Method in class gnu.xml.pipeline.DomConsumer.Handler
 
externalEntityDecl(String, String, String) - Method in class gnu.xml.pipeline.ValidationConsumer
DecllHandler passed to the next consumer, unless this one was preloaded with a particular DTD
externalEntityDecl(String, String, String) - Method in class gnu.xml.util.XMLWriter
SAX2: called on external entity declarations
externalEntityDecl(String, String, String) - Method in class gnu.xml.util.DefaultHandler
SAX2: called on external entity declarations
externalEntityDecl(String, String, String) - Method in interface org.xml.sax.ext.DeclHandler
Report a parsed external entity declaration.

F

FactoryConfigurationError - error javax.xml.parsers.FactoryConfigurationError.
FactoryConfigurationError
FactoryConfigurationError() - Constructor for class javax.xml.parsers.FactoryConfigurationError
 
FactoryConfigurationError(Exception) - Constructor for class javax.xml.parsers.FactoryConfigurationError
 
FactoryConfigurationError(Exception, String) - Constructor for class javax.xml.parsers.FactoryConfigurationError
 
FactoryConfigurationError(String) - Constructor for class javax.xml.parsers.FactoryConfigurationError
 
fatal(String, Exception) - Method in class gnu.xml.util.XMLWriter
Used internally and by subclasses, this encapsulates the logic involved in reporting fatal errors.
fatalError(SAXParseException) - Method in interface org.xml.sax.ErrorHandler
Receive notification of a non-recoverable error.
fatalError(SAXParseException) - Method in class org.xml.sax.HandlerBase
Deprecated. Report a fatal XML parsing error.
fatalError(SAXParseException) - Method in class org.xml.sax.helpers.DefaultHandler
Report a fatal XML parsing error.
fatalError(SAXParseException) - Method in class org.xml.sax.helpers.XMLFilterImpl
Filter a fatal error event.
FEATURE_URI - Static variable in class gnu.xml.pipeline.EventFilter
SAX2 URI prefix for standard feature flags.
fileNameToURL(String) - Static method in class gnu.xml.util.Resolver
Provides the URL for a named file, without relying on the JDK 1.2 File.toURL() utility method.
fileToURL(File) - Static method in class gnu.xml.util.Resolver
Provides the URL for a file, without relying on the JDK 1.2 File.toURL() utility method.
flush() - Method in class gnu.xml.util.XMLWriter
Flushes the output stream.

G

getAttrChange() - Method in class gnu.xml.dom.DomEvent.DomMutationEvent
For attribute change events, returns how the attribuet changed
getAttribute(String) - Method in class gnu.xml.dom.JAXPFactory
There seems to be no useful specification for attribute names
getAttribute(String) - Method in class gnu.xml.dom.DomElement
DOM L1 Returns the value of the specified attribute, or an empty string.
getAttribute(String) - Method in interface org.w3c.dom.Element
Retrieves an attribute value by name.
getAttribute(String) - Method in class javax.xml.parsers.DocumentBuilderFactory
 
getAttributeNode(String) - Method in class gnu.xml.dom.DomElement
DOM L1 Returns the appropriate attribute node; the name is the nodeName property of the attribute.
getAttributeNode(String) - Method in interface org.w3c.dom.Element
Retrieves an attribute node by name.
getAttributeNodeNS(String, String) - Method in class gnu.xml.dom.DomElement
DOM L2 Returns the appropriate attribute node; the name combines the namespace name and the local part.
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 gnu.xml.dom.DomElement
DOM L2 Returns the value of the specified attribute, or an empty string.
getAttributeNS(String, String) - Method in interface org.w3c.dom.Element
Retrieves an attribute value by local name and namespace URI.
getAttributes() - Method in class gnu.xml.dom.DomNode
DOM L1 Returns null; Element subclasses must override this method.
getAttributes() - Method in class gnu.xml.dom.DomElement
DOM L1 Returns the element's attributes
getAttributes() - Method in interface org.w3c.dom.Node
A NamedNodeMap containing the attributes of this node (if it is an Element) or null otherwise.
getAttrName() - Method in class gnu.xml.dom.DomEvent.DomMutationEvent
For attribute change events, returns the attribute's name
getBubbles() - Method in class gnu.xml.dom.DomEvent
Returns true if the news of the event bubbles to tree tops (as specified during initialization).
getByteStream() - Method in class org.xml.sax.InputSource
Get the byte stream for this input source.
getCallTarget() - Method in class gnu.xml.pipeline.CallFilter
Returns the call target's URI.
getCancelable() - Method in class gnu.xml.dom.DomEvent
Returns true if the default handling may be canceled (as specified during initialization).
getCharacterStream() - Method in class org.xml.sax.InputSource
Get the character stream for this input source.
getChildNodes() - Method in class gnu.xml.dom.DomNode
DOM L1 Returns a list, possibly empty, of the children of this node.
getChildNodes() - Method in class gnu.xml.dom.DomCharacterData
DOM L1 Returns an empty list of children.
getChildNodes() - Method in interface org.w3c.dom.Node
A NodeList that contains all children of this node.
getColumnNumber() - Method in class gnu.xml.aelfred2.SAXDriver
SAX Locator method (don't invoke on parser);
getColumnNumber() - Method in class org.xml.sax.SAXParseException
The column number of the end of the text where the exception occurred.
getColumnNumber() - Method in interface org.xml.sax.Locator
Return the column number where the current document event ends.
getColumnNumber() - Method in class org.xml.sax.helpers.LocatorImpl
Return the saved column number (1-based).
getContentHandler() - Method in class gnu.xml.aelfred2.SAXDriver
SAX2: Returns the object used to report the logical content of an XML document.
getContentHandler() - Method in class gnu.xml.aelfred2.XmlReader
SAX2: Returns the object used to report the logical content of an XML document.
getContentHandler() - Method in class gnu.xml.pipeline.EventFilter
Returns the content handler being used.
getContentHandler() - Method in class gnu.xml.pipeline.CallFilter
Returns the content handler currently in use.
getContentHandler() - Method in class gnu.xml.pipeline.TextConsumer
EventConsumer Returns the document handler being used.
getContentHandler() - Method in class gnu.xml.pipeline.TeeConsumer
Returns the content handler being used.
getContentHandler() - Method in class gnu.xml.pipeline.DomConsumer
Returns the document handler being used.
getContentHandler() - Method in interface gnu.xml.pipeline.EventConsumer
Most stages process these core SAX callbacks.
getContentHandler() - Method in class gnu.xml.util.DomParser
SAX2: Returns the object used to report the logical content of an XML document.
getContentHandler() - Method in interface org.xml.sax.XMLReader
Return the current content handler.
getContentHandler() - Method in class org.xml.sax.helpers.XMLFilterImpl
Get the content event handler.
getContentHandler() - Method in class org.xml.sax.helpers.ParserAdapter
Return the current content handler.
getCurrentTarget() - Method in class gnu.xml.dom.DomEvent
Returns the target to which events are currently being delivered.
getData() - Method in class gnu.xml.dom.DomCharacterData
DOM L1 Returns the value of this node; same as getNodeValue.
getData() - Method in class gnu.xml.dom.DomPI
DOM L1 Returns the data associated with the processing instruction.
getData() - Method in class gnu.xml.dom.DomEx
Returns data to which the diagnotic applies, or null.
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.
getDeclaredPrefixes() - Method in class org.xml.sax.helpers.NamespaceSupport
Return an enumeration of all prefixes declared in this context.
getDetail() - Method in class gnu.xml.dom.DomEvent.DomUIEvent
 
getDoctype() - Method in class gnu.xml.dom.DomDocument
DOM L1 Returns the document's DocumentType, or null.
getDoctype() - Method in interface org.w3c.dom.Document
The Document Type Declaration (see DocumentType) associated with this document.
getDocument() - Method in class gnu.xml.pipeline.DomConsumer
Returns the document constructed from the preceding sequence of events.
getDocument() - Method in class gnu.xml.pipeline.DomConsumer.Handler
Returns the document under construction.
getDocumentElement() - Method in class gnu.xml.dom.DomDocument
DOM L1 Returns the document's root element, or null.
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.
getDocumentLocator() - Method in class gnu.xml.pipeline.EventFilter
Returns any locator provided to the next consumer, if this class (or a subclass) is handling ContentHandler events.
getDTDHandler() - Method in class gnu.xml.aelfred2.SAXDriver
SAX2: Returns the object used to process declarations related to notations and unparsed entities.
getDTDHandler() - Method in class gnu.xml.aelfred2.XmlReader
SAX2: Returns the object used to process declarations related to notations and unparsed entities.
getDTDHandler() - Method in class gnu.xml.pipeline.EventFilter
Returns the dtd handler being used.
getDTDHandler() - Method in class gnu.xml.pipeline.CallFilter
Returns the DTD handler currently in use.
getDTDHandler() - Method in class gnu.xml.pipeline.TextConsumer
EventConsumer Returns the dtd handler being used.
getDTDHandler() - Method in class gnu.xml.pipeline.TeeConsumer
Returns the dtd handler being used.
getDTDHandler() - Method in class gnu.xml.pipeline.DomConsumer
Returns the DTD handler being used.
getDTDHandler() - Method in interface gnu.xml.pipeline.EventConsumer
Few stages will use unparsed entities.
getDTDHandler() - Method in class gnu.xml.util.DomParser
SAX2: Returns the object used to process declarations related to notations and unparsed entities.
getDTDHandler() - Method in interface org.xml.sax.XMLReader
Return the current DTD handler.
getDTDHandler() - Method in class org.xml.sax.helpers.XMLFilterImpl
Get the current DTD event handler.
getDTDHandler() - Method in class org.xml.sax.helpers.ParserAdapter
Return the current DTD handler.
getElementById(String) - Method in class gnu.xml.dom.DomDocument
DOM L1 (relocated in DOM L2) Returns the element with the specified "ID" attribute, or null.
getElementById(String) - Method in interface org.w3c.dom.Document
Returns the Element whose ID is given by elementId.
getElementsByTagName(String) - Method in class gnu.xml.dom.DomNode
DOM L1 Creates a NodeList giving array-style access to elements with the specified name.
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 gnu.xml.dom.DomNode
DOM L2 Creates a NodeList giving array-style access to elements with the specified namespace and local name.
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.
getEncoding() - Method in class org.xml.sax.InputSource
Get the character encoding for a byte stream or URI.
getEncoding(String) - Static method in class gnu.xml.util.Resolver
This parses most MIME content type strings that have charset=... encoding declarations to and returns the specified encoding.
getEntities() - Method in class gnu.xml.dom.DomDoctype
DOM L1 Returns information about any general entities 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.
getEntityResolver() - Method in class gnu.xml.aelfred2.SAXDriver
SAX2: Returns the object used when resolving external entities during parsing (both general and parameter entities).
getEntityResolver() - Method in class gnu.xml.aelfred2.XmlReader
SAX2: Returns the object used when resolving external entities during parsing (both general and parameter entities).
getEntityResolver() - Method in class gnu.xml.util.DomParser
SAX2: Returns the object used when resolving external entities during parsing (both general and parameter entities).
getEntityResolver() - Method in interface org.xml.sax.XMLReader
Return the current entity resolver.
getEntityResolver() - Method in class org.xml.sax.helpers.XMLFilterImpl
Get the current entity resolver.
getEntityResolver() - Method in class org.xml.sax.helpers.ParserAdapter
Return the current entity resolver.
getErrorHandler() - Method in class gnu.xml.aelfred2.SAXDriver
SAX2: Returns the object used to receive callbacks for XML errors of all levels (fatal, nonfatal, warning); this is never null;
getErrorHandler() - Method in class gnu.xml.aelfred2.XmlReader
SAX2: Returns the object used to receive callbacks for XML errors of all levels (fatal, nonfatal, warning); this is never null;
getErrorHandler() - Method in class gnu.xml.pipeline.EventFilter
Returns the error handler assigned this filter stage, or null if no such assigment has been made.
getErrorHandler() - Method in class gnu.xml.util.DomParser
SAX2: Returns the object used to receive callbacks for XML errors of all levels (fatal, nonfatal, warning).
getErrorHandler() - Method in interface org.xml.sax.XMLReader
Return the current error handler.
getErrorHandler() - Method in class org.xml.sax.helpers.XMLFilterImpl
Get the current error event handler.
getErrorHandler() - Method in class org.xml.sax.helpers.ParserAdapter
Return the current error handler.
getEventPhase() - Method in class gnu.xml.dom.DomEvent
Returns CAPTURING_PHASE, AT_TARGET, or BUBBLING; only meaningful within EventListener.handleEvent
getException() - Method in class org.xml.sax.SAXException
Return the embedded exception, if any.
getException() - Method in class javax.xml.parsers.FactoryConfigurationError
 
getExpandEntityReferences() - Method in class gnu.xml.dom.DomIterator
DOM L2 Returns the flag controlling whether iteration descends through entity references.
getFeature(String) - Method in class gnu.xml.aelfred2.SAXDriver
SAX2: Tells the value of the specified feature flag.
getFeature(String) - Method in class gnu.xml.aelfred2.JAXPFactory
 
getFeature(String) - Method in class gnu.xml.aelfred2.XmlReader
SAX2: Tells whether this parser supports the specified feature.
getFeature(String) - Method in class gnu.xml.util.DomParser
SAX2: Tells whether this parser supports the specified feature.
getFeature(String) - Method in interface org.xml.sax.XMLReader
Look up the value of a feature.
getFeature(String) - Method in class org.xml.sax.helpers.XMLFilterImpl
Look up the state of a feature.
getFeature(String) - Method in class org.xml.sax.helpers.ParserAdapter
Check a parser feature.
getFeature(String) - Method in class javax.xml.parsers.SAXParserFactory
Retrieves a current factory feature flag setting.
getFilter() - Method in class gnu.xml.dom.DomIterator
DOM L2 Returns the filter provided during construction.
getFirst() - Method in class gnu.xml.pipeline.TeeConsumer
Returns the first pipeline to get event calls.
getFirstChild() - Method in class gnu.xml.dom.DomNode
DOM L1 Returns the first child of this node, or null if there are none.
getFirstChild() - Method in interface org.w3c.dom.Node
The first child of this node.
getImplementation() - Method in class gnu.xml.dom.DomDoctype
Returns the implementation associated with this document type.
getImplementation() - Method in class gnu.xml.dom.DomDocument
DOM L1 Returns the document's DOMImplementation.
getImplementation() - Method in interface org.w3c.dom.Document
The DOMImplementation object that handles this document.
getIndex(String) - Method in class gnu.xml.aelfred2.SAXDriver
SAX2 Attributes method (don't invoke on parser);
getIndex(String) - Method in interface org.xml.sax.Attributes
Look up the index of an attribute by XML 1.0 qualified name.
getIndex(String) - Method in class org.xml.sax.helpers.AttributesImpl
Look up an attribute's index by qualified (prefixed) name.
getIndex(String, String) - Method in class gnu.xml.aelfred2.SAXDriver
SAX2 Attributes method (don't invoke on parser);
getIndex(String, String) - Method in interface org.xml.sax.Attributes
Look up the index of an attribute by Namespace name.
getIndex(String, String) - Method in class org.xml.sax.helpers.AttributesImpl
Look up an attribute's index by Namespace name.
getInternalSubset() - Method in class gnu.xml.dom.DomDoctype
DOM L2 Returns the internal subset of the document, as a string of unparsed XML declarations (and comments, PIs, whitespace); or returns null if there is no such subset.
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 gnu.xml.dom.DomNode
DOM L1 Returns the last child of this node, or null if there are none.
getLastChild() - Method in interface org.w3c.dom.Node
The last child of this node.
getLength() - Method in class gnu.xml.aelfred2.SAXDriver
SAX1 AttributeList, SAX2 Attributes method (don't invoke on parser);
getLength() - Method in class gnu.xml.dom.DomNode
DOM L1 (NodeList) Returns the number of elements in this NodeList.
getLength() - Method in class gnu.xml.dom.DomNamedNodeMap
DOM L1 Returns the length of the map.
getLength() - Method in class gnu.xml.dom.DomCharacterData
DOM L1 Returns the length of the data.
getLength() - Method in interface org.xml.sax.Attributes
Return the number of attributes in the list.
getLength() - Method in interface org.xml.sax.AttributeList
Deprecated. Return the number of attributes in this list.
getLength() - Method in class org.xml.sax.helpers.AttributeListImpl
Deprecated. Return the number of attributes in the list.
getLength() - Method in class org.xml.sax.helpers.AttributesImpl
Return the number of attributes 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.
getLineNumber() - Method in class gnu.xml.aelfred2.SAXDriver
SAX Locator method (don't invoke on parser);
getLineNumber() - Method in class org.xml.sax.SAXParseException
The line number of the end of the text where the exception occurred.
getLineNumber() - Method in interface org.xml.sax.Locator
Return the line number where the current document event ends.
getLineNumber() - Method in class org.xml.sax.helpers.LocatorImpl
Return the saved line number (1-based).
getLinks() - Method in class gnu.xml.pipeline.LinkFilter
Returns an enumeration of the links found since the filter was constructed, or since removeAllLinks() was called.
getLocalName() - Method in class gnu.xml.dom.DomNode
DOM L2 Returns the node name; this must be overridden for element and attribute nodes.
getLocalName() - Method in class gnu.xml.dom.DomNsNode
DOM L2 Returns the local part of the node's name (after any colon), or null if the node name is not namespace scoped.
getLocalName() - Method in interface org.w3c.dom.Node
Returns the local part of the qualified name of this node.
getLocalName(int) - Method in class gnu.xml.aelfred2.SAXDriver
SAX2 Attributes method (don't invoke on parser);
getLocalName(int) - Method in interface org.xml.sax.Attributes
Look up an attribute's local name by index.
getLocalName(int) - Method in class org.xml.sax.helpers.AttributesImpl
Return an attribute's local name.
getMessage() - Method in class gnu.xml.dom.DomEx
Returns a diagnostic message that may be slightly more useful than the generic one, where possible.
getMessage() - Method in class org.xml.sax.SAXException
Return a detail message for this exception.
getMessage() - Method in class javax.xml.parsers.FactoryConfigurationError
 
getName() - Method in class gnu.xml.dom.DomAttr
DOM L1 Returns the attribute name (same as getNodeName)
getName() - Method in class gnu.xml.dom.DomDoctype
DOM L1 Returns the root element's name (just like getNodeName).
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.
getName(int) - Method in class gnu.xml.aelfred2.SAXDriver
SAX1 AttributeList method (don't invoke on parser);
getName(int) - Method in interface org.xml.sax.AttributeList
Deprecated. Return the name of an attribute in this list (by position).
getName(int) - Method in class org.xml.sax.helpers.AttributeListImpl
Deprecated. Get the name of an attribute (by position).
getNamedItem(String) - Method in class gnu.xml.dom.DomNamedNodeMap
DOM L1 Returns the named item from the map, or null; names are just the nodeName property.
getNamedItem(String) - Method in interface org.w3c.dom.NamedNodeMap
Retrieves a node specified by name.
getNamedItemNS(String, String) - Method in class gnu.xml.dom.DomNamedNodeMap
DOM L2 Returns the named item from the map, or null; names are the localName and namespaceURI properties, ignoring any prefix.
getNamedItemNS(String, String) - Method in interface org.w3c.dom.NamedNodeMap
Retrieves a node specified by local name and namespace URI.
getNamespaceURI() - Method in class gnu.xml.dom.DomNode
DOM L2 Returns null; this must be overridden for element and attribute nodes.
getNamespaceURI() - Method in class gnu.xml.dom.DomNsNode
DOM L2 Returns the node's namespace URI or null if the node name is not namespace scoped.
getNamespaceURI() - Method in interface org.w3c.dom.Node
The namespace URI of this node, or null if it is unspecified.
getNewValue() - Method in class gnu.xml.dom.DomEvent.DomMutationEvent
Returns any "new value" provided by this type of event
getNext() - Method in class gnu.xml.pipeline.EventFilter
Returns the next event consumer in sequence; or null if there is no such handler.
getNextSibling() - Method in class gnu.xml.dom.DomNode
DOM L1 Returns the previous sibling, if one is known.
getNextSibling() - Method in interface org.w3c.dom.Node
The node immediately following this node.
getNode() - Method in class gnu.xml.dom.DomEx
Returns the node to which the diagnotic applies, or null.
getNodeName() - Method in class gnu.xml.dom.DomExtern
DOM L1 Returns the object's name.
getNodeName() - Method in class gnu.xml.dom.DomFragment
DOM L1 Returns the string "#document-fragment".
getNodeName() - Method in class gnu.xml.dom.DomNsNode
DOM L1 Returns the node's name, including any namespace prefix.
getNodeName() - Method in class gnu.xml.dom.DomText
DOM L1 Returns the string "#text".
getNodeName() - Method in class gnu.xml.dom.DomComment
DOM L1 Returns the string "#comment".
getNodeName() - Method in class gnu.xml.dom.DomEntityReference
DOM L1 Returns the name of the referenced entity.
getNodeName() - Method in class gnu.xml.dom.DomPI
DOM L1 Returns the target of the processing instruction (same as getTarget).
getNodeName() - Method in class gnu.xml.dom.DomCDATA
DOM L1 Returns the string "#cdata-section".
getNodeName() - Method in class gnu.xml.dom.DomDocument
DOM L1 Returns the constant "#document".
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 gnu.xml.dom.DomNode
DOM L1 Returns a code identifying the type of this object, such as ELEMENT_NODE, TEXT_NODE, and so on.
getNodeType() - Method in interface org.w3c.dom.Node
A code representing the type of the underlying object, as defined above.
getNodeValue() - Method in class gnu.xml.dom.DomNode
DOM L1 Returns null; this must be overridden for nodes types with a defined value, along with the setNodeValue method.
getNodeValue() - Method in class gnu.xml.dom.DomAttr
DOM L1 Returns the attribute value, with character and entity references substituted.
getNodeValue() - Method in class gnu.xml.dom.DomCharacterData
DOM L1 Returns the value of this node.
getNodeValue() - Method in class gnu.xml.dom.DomPI
DOM L1 Returns the data associated with the processing instruction (same as getData).
getNodeValue() - Method in interface org.w3c.dom.Node
The value of this node, depending on its type; see the table above.
getNotationName() - Method in class gnu.xml.dom.DomEntity
DOM L1 Returns the NOTATION identifier associated with this entity, if any.
getNotationName() - Method in interface org.w3c.dom.Entity
For unparsed entities, the name of the notation for the entity.
getNotations() - Method in class gnu.xml.dom.DomDoctype
DOM L1 Returns information about any 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 gnu.xml.dom.DomNode
DOM L1 (modified in L2) Returns the owner document.
getOwnerDocument() - Method in interface org.w3c.dom.Node
The Document object associated with this node.
getOwnerElement() - Method in class gnu.xml.dom.DomAttr
DOM L2 Returns the element with which this attribute is associated.
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.
getParent() - Method in interface org.xml.sax.XMLFilter
Get the parent reader.
getParent() - Method in class org.xml.sax.helpers.XMLFilterImpl
Get the parent reader.
getParentNode() - Method in class gnu.xml.dom.DomNode
DOM L1 Returns the parent node, if one is known.
getParentNode() - Method in interface org.w3c.dom.Node
The parent of this node.
getParser() - Method in class javax.xml.parsers.SAXParser
 
getPrefix() - Method in class gnu.xml.dom.DomNode
DOM L2 Returns null; this must be overridden for element and attribute nodes.
getPrefix() - Method in class gnu.xml.dom.DomNsNode
DOM L2 Returns any prefix part of the node's name (before any colon).
getPrefix() - Method in interface org.w3c.dom.Node
The namespace prefix of this node, or null if it is unspecified.
getPrefix(String) - Method in class org.xml.sax.helpers.NamespaceSupport
Return one of the prefixes mapped to a Namespace URI.
getPrefixes() - Method in class org.xml.sax.helpers.NamespaceSupport
Return an enumeration of all prefixes currently declar