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 declared.
getPrefixes(String) - Method in class org.xml.sax.helpers.NamespaceSupport
Return an enumeration of all prefixes currently declared for a URI.
getPreviousSibling() - Method in class gnu.xml.dom.DomNode
DOM L1 Returns the previous sibling, if one is known.
getPreviousSibling() - Method in interface org.w3c.dom.Node
The node immediately preceding this node.
getPrevValue() - Method in class gnu.xml.dom.DomEvent.DomMutationEvent
Returns any "previous value" provided by this type of event
getProperty(String) - Method in class gnu.xml.aelfred2.SAXDriver
SAX2: Returns the specified property.
getProperty(String) - Method in class gnu.xml.aelfred2.XmlReader
SAX2: Returns the specified property.
getProperty(String) - Method in class gnu.xml.pipeline.EventFilter
Retrieves a property of unknown intent (usually a handler)
getProperty(String) - Method in class gnu.xml.pipeline.CallFilter
Returns the declaration or lexical handler currently in use, or throws an exception for other properties.
getProperty(String) - Method in class gnu.xml.pipeline.TextConsumer
XMLReaderRetrieves a property (lexical and decl handlers)
getProperty(String) - Method in class gnu.xml.pipeline.TeeConsumer
Returns the declaration or lexical handler being used.
getProperty(String) - Method in class gnu.xml.pipeline.DomConsumer
Returns the lexical handler being used.
getProperty(String) - Method in interface gnu.xml.pipeline.EventConsumer
This method works like the SAX2 XMLReader method of the same name, and is used to retrieve the optional lexical and declaration handlers in a pipeline.
getProperty(String) - Method in class gnu.xml.util.DomParser
SAX2: Returns the specified property.
getProperty(String) - Method in interface org.xml.sax.XMLReader
Look up the value of a property.
getProperty(String) - Method in class org.xml.sax.helpers.XMLFilterImpl
Look up the value of a property.
getProperty(String) - Method in class org.xml.sax.helpers.ParserAdapter
Get a parser property.
getProperty(String) - Method in class javax.xml.parsers.SAXParser
 
getPublicId() - Method in class gnu.xml.aelfred2.SAXDriver
SAX Locator method (don't invoke on parser);
getPublicId() - Method in class gnu.xml.dom.DomExtern
DOM L1 Returns the PUBLIC identifier associated with this object, if any.
getPublicId() - Method in class org.xml.sax.InputSource
Get the public identifier for this input source.
getPublicId() - Method in class org.xml.sax.SAXParseException
Get the public identifier of the entity where the exception occurred.
getPublicId() - Method in interface org.xml.sax.Locator
Return the public identifier for the current document event.
getPublicId() - Method in class org.xml.sax.helpers.LocatorImpl
Return the saved public identifier.
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.
getQName(int) - Method in class gnu.xml.aelfred2.SAXDriver
SAX2 Attributes method (don't invoke on parser);
getQName(int) - Method in interface org.xml.sax.Attributes
Look up an attribute's XML 1.0 qualified name by index.
getQName(int) - Method in class org.xml.sax.helpers.AttributesImpl
Return an attribute's qualified (prefixed) name.
getRelatedNode() - Method in class gnu.xml.dom.DomEvent.DomMutationEvent
Returns any "related" node provided by this type of event
getRest() - Method in class gnu.xml.pipeline.TeeConsumer
Returns the second pipeline to get event calls.
getRoot() - Method in class gnu.xml.dom.DomIterator
DOM L2 Returns the root of the tree this is iterating through.
getSpecified() - Method in class gnu.xml.dom.DomAttr
DOM L1 Returns true if a parser reported this was in the source text.
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.
getSystemId() - Method in class gnu.xml.aelfred2.SAXDriver
SAX Locator method (don't invoke on parser);
getSystemId() - Method in class gnu.xml.dom.DomExtern
DOM L1 Returns the SYSTEM identifier associated with this object, if any.
getSystemId() - Method in class org.xml.sax.InputSource
Get the system identifier for this input source.
getSystemId() - Method in class org.xml.sax.SAXParseException
Get the system identifier of the entity where the exception occurred.
getSystemId() - Method in interface org.xml.sax.Locator
Return the system identifier for the current document event.
getSystemId() - Method in class org.xml.sax.helpers.LocatorImpl
Return the saved system identifier.
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 gnu.xml.dom.DomElement
DOM L1 Returns the element name (same as getNodeName).
getTagName() - Method in interface org.w3c.dom.Element
The name of the element.
getTarget() - Method in class gnu.xml.dom.DomEvent
Returns event's target; delivery of an event is initiated by a target.dispatchEvent(event) invocation.
getTarget() - Method in class gnu.xml.dom.DomPI
DOM L1 Returns the target of the processing instruction.
getTarget() - Method in interface org.w3c.dom.ProcessingInstruction
The target of this processing instruction.
getTimeStamp() - Method in class gnu.xml.dom.DomEvent
Returns the event's timestamp.
getType() - Method in class gnu.xml.dom.DomEvent
Returns the event's type (name) as initialized
getType(int) - Method in class gnu.xml.aelfred2.SAXDriver
SAX1 AttributeList, SAX2 Attributes method (don't invoke on parser);
getType(int) - Method in interface org.xml.sax.Attributes
Look up an attribute's type by index.
getType(int) - Method in interface org.xml.sax.AttributeList
Deprecated. Return the type of an attribute in the list (by position).
getType(int) - Method in class org.xml.sax.helpers.AttributeListImpl
Deprecated. Get the type of an attribute (by position).
getType(int) - Method in class org.xml.sax.helpers.AttributesImpl
Return an attribute's type by index.
getType(String) - Method in class gnu.xml.aelfred2.SAXDriver
SAX1 AttributeList, SAX2 Attributes method (don't invoke on parser);
getType(String) - Method in interface org.xml.sax.Attributes
Look up an attribute's type by XML 1.0 qualified name.
getType(String) - Method in interface org.xml.sax.AttributeList
Deprecated. Return the type of an attribute in the list (by name).
getType(String) - Method in class org.xml.sax.helpers.AttributeListImpl
Deprecated. Get the type of an attribute (by name).
getType(String) - Method in class org.xml.sax.helpers.AttributesImpl
Look up an attribute's type by qualified (prefixed) name.
getType(String, String) - Method in class gnu.xml.aelfred2.SAXDriver
SAX2 Attributes method (don't invoke on parser);
getType(String, String) - Method in interface org.xml.sax.Attributes
Look up an attribute's type by Namespace name.
getType(String, String) - Method in class org.xml.sax.helpers.AttributesImpl
Look up an attribute's type by Namespace-qualified name.
getURI(int) - Method in class gnu.xml.aelfred2.SAXDriver
SAX2 Attributes method (don't invoke on parser);
getURI(int) - Method in interface org.xml.sax.Attributes
Look up an attribute's Namespace URI by index.
getURI(int) - Method in class org.xml.sax.helpers.AttributesImpl
Return an attribute's Namespace URI.
getURI(String) - Method in class org.xml.sax.helpers.NamespaceSupport
Look up a prefix and get the currently-mapped Namespace URI.
getURL(String) - Static method in class gnu.xml.util.Resolver
Returns a URL string.
getValue() - Method in class gnu.xml.dom.DomAttr
DOM L1 Returns the value of the attribute as a non-null string; same as getNodeValue.
getValue() - Method in class gnu.xml.dom.DomEx
Returns data to which the diagnotic applies, or null.
getValue() - Method in interface org.w3c.dom.Attr
On retrieval, the value of the attribute is returned as a string.
getValue(int) - Method in class gnu.xml.aelfred2.SAXDriver
SAX1 AttributeList, SAX2 Attributes method (don't invoke on parser);
getValue(int) - Method in interface org.xml.sax.Attributes
Look up an attribute's value by index.
getValue(int) - Method in interface org.xml.sax.AttributeList
Deprecated. Return the value of an attribute in the list (by position).
getValue(int) - Method in class org.xml.sax.helpers.AttributeListImpl
Deprecated. Get the value of an attribute (by position).
getValue(int) - Method in class org.xml.sax.helpers.AttributesImpl
Return an attribute's value by index.
getValue(String) - Method in class gnu.xml.aelfred2.SAXDriver
SAX1 AttributeList, SAX2 Attributes method (don't invoke on parser);
getValue(String) - Method in interface org.xml.sax.Attributes
Look up an attribute's value by XML 1.0 qualified name.
getValue(String) - Method in interface org.xml.sax.AttributeList
Deprecated. Return the value of an attribute in the list (by name).
getValue(String) - Method in class org.xml.sax.helpers.AttributeListImpl
Deprecated. Get the value of an attribute (by name).
getValue(String) - Method in class org.xml.sax.helpers.AttributesImpl
Look up an attribute's value by qualified (prefixed) name.
getValue(String, String) - Method in class gnu.xml.aelfred2.SAXDriver
SAX Attributes method (don't invoke on parser);
getValue(String, String) - Method in interface org.xml.sax.Attributes
Look up an attribute's value by Namespace name.
getValue(String, String) - Method in class org.xml.sax.helpers.AttributesImpl
Look up an attribute's value by Namespace-qualified name.
getView() - Method in class gnu.xml.dom.DomEvent.DomUIEvent
 
getWhatToShow() - Method in class gnu.xml.dom.DomIterator
DOM L2 Returns the mask of flags provided during construction.
getXMLReader() - Method in class javax.xml.parsers.SAXParser
 
gnu.xml.aelfred2 - package gnu.xml.aelfred2
This package contains Ælfred2, which includes an enhanced SAX2-compatible version of the Ælfred non-validating XML parser, a modular (and hence optional) DTD validating parser, and modular (and hence optional) JAXP glue to those.
gnu.xml.dom - package gnu.xml.dom
This is a Free Software DOM Level 2 implementation, supporting these features: "XML", "Events", "MutationEvents", "HTMLEvents" (won't generate them though), "UIEvents" (also won't generate them), "USER-Events" (a conformant extension), and "Traversal" (optional; no TreeWalker yet).
gnu.xml.pipeline - package gnu.xml.pipeline
This package exposes a kind of XML processing pipeline, based on sending SAX events, which can be used as components of application architectures.
gnu.xml.util - package gnu.xml.util
This package contains XML utilities, including SAX2 XML writers and a parser of DOM trees, plus a command line driver.

H

handleEvent(Event) - Method in class gnu.xml.dom.DomIterator
Not for public use.
HandlerBase - class org.xml.sax.HandlerBase.
Deprecated. This class works with the deprecated DocumentHandler interface. It has been replaced by the SAX2 DefaultHandler class.
HandlerBase() - Constructor for class org.xml.sax.HandlerBase
Deprecated.  
hasAttribute(String) - Method in class gnu.xml.dom.DomElement
DOM L2 Returns true if the element has an attribute with the specified name (specified or DTD defaulted).
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 gnu.xml.dom.DomElement
DOM L2 Returns true if the element has an attribute with the specified name (specified or DTD defaulted).
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 gnu.xml.dom.DomNode
DOM L2> Returns true iff this is an element node with attributes.
hasAttributes() - Method in class gnu.xml.dom.DomElement
DOM L2> Returns true iff this is an element node with 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 gnu.xml.dom.DomNode
DOM L1 Returns true if this node has children.
hasChildNodes() - Method in interface org.w3c.dom.Node
Returns whether this node has any children.
hasFeature(String, String) - Method in class gnu.xml.dom.DomImpl
DOM L1 Returns true if the specified feature and version are supported.
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

ignorableWhitespace(char[], int, int) - Method in class gnu.xml.pipeline.EventFilter
SAX2: passes this callback to the next consumer, if any
ignorableWhitespace(char[], int, int) - Method in class gnu.xml.pipeline.TeeConsumer
 
ignorableWhitespace(char[], int, int) - Method in class gnu.xml.pipeline.DomConsumer.Handler
 
ignorableWhitespace(char[], int, int) - Method in class gnu.xml.pipeline.WellFormednessFilter
 
ignorableWhitespace(char[], int, int) - Method in class gnu.xml.util.XMLWriter
SAX1: reports ignorable whitespace
ignorableWhitespace(char[], int, int) - Method in interface org.xml.sax.ContentHandler
Receive notification of ignorable whitespace in element content.
ignorableWhitespace(char[], int, int) - Method in class org.xml.sax.HandlerBase
Deprecated. Receive notification of ignorable whitespace in element content.
ignorableWhitespace(char[], int, int) - Method in interface org.xml.sax.DocumentHandler
Deprecated. Receive notification of ignorable whitespace in element content.
ignorableWhitespace(char[], int, int) - Method in class org.xml.sax.helpers.DefaultHandler
Receive notification of ignorable whitespace in element content.
ignorableWhitespace(char[], int, int) - Method in class org.xml.sax.helpers.XMLReaderAdapter
Adapt a SAX2 ignorable whitespace event.
ignorableWhitespace(char[], int, int) - Method in class org.xml.sax.helpers.XMLFilterImpl
Filter an ignorable whitespace event.
ignorableWhitespace(char[], int, int) - Method in class org.xml.sax.helpers.ParserAdapter
Adapt a SAX1 ignorable whitespace event.
importNode(Node, boolean) - Method in class gnu.xml.dom.DomDocument
DOM L2 Makes a copy of the specified node, with all nodes "owned" by this document and with children optionally copied.
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
initEvent(String, boolean, boolean) - Method in class gnu.xml.dom.DomEvent
Initializes basic event state.
initMutationEvent(String, boolean, boolean, Node, String, String, String, short) - Method in class gnu.xml.dom.DomEvent.DomMutationEvent
Initializes a mutation event
initUIEvent(String, boolean, boolean, AbstractView, int) - Method in class gnu.xml.dom.DomEvent.DomUIEvent
Initializes a UI event
InputSource - class org.xml.sax.InputSource.
A single input source for an XML entity.
InputSource() - Constructor for class org.xml.sax.InputSource
Zero-argument default constructor.
InputSource(InputStream) - Constructor for class org.xml.sax.InputSource
Create a new input source with a byte stream.
InputSource(Reader) - Constructor for class org.xml.sax.InputSource
Create a new input source with a character stream.
InputSource(String) - Constructor for class org.xml.sax.InputSource
Create a new input source with a system identifier.
insertBefore(Node, Node) - Method in class gnu.xml.dom.DomNode
DOM L1 Inserts the specified node in this node's list of children.
insertBefore(Node, Node) - Method in class gnu.xml.dom.DomDocument
DOM L1 Inserts the specified node in this node's list of children, enforcing the constraints that there be only one root element and one document type child.
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 gnu.xml.dom.DomCharacterData
DOM L1 Modifies the value of this node.
insertData(int, String) - Method in interface org.w3c.dom.CharacterData
Insert a string at the specified 16-bit unit offset.
internalEntityDecl(String, String) - Method in class gnu.xml.pipeline.EventFilter
SAX2: passes this callback to the next consumer, if any
internalEntityDecl(String, String) - Method in class gnu.xml.pipeline.TeeConsumer
 
internalEntityDecl(String, String) - Method in class gnu.xml.pipeline.DomConsumer.Handler
 
internalEntityDecl(String, String) - Method in class gnu.xml.pipeline.ValidationConsumer
DecllHandler passed to the next consumer, unless this one was preloaded with a particular DTD
internalEntityDecl(String, String) - Method in class gnu.xml.util.XMLWriter
SAX2: called on internal entity declarations
internalEntityDecl(String, String) - Method in class gnu.xml.util.DefaultHandler
SAX2: called on internal entity declarations
internalEntityDecl(String, String) - Method in interface org.xml.sax.ext.DeclHandler
Report an internal entity declaration.
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.
isCanonical() - Method in class gnu.xml.util.XMLWriter
Returns value of flag controlling canonical output.
isCheckingCharacters() - Method in class gnu.xml.dom.DomDocument
Returns true if certain expensive checks are performed.
isCoalescing() - Method in class javax.xml.parsers.DocumentBuilderFactory
 
isExpandEntityReferences() - Method in class javax.xml.parsers.DocumentBuilderFactory
 
isExpandingEntities() - Method in class gnu.xml.util.XMLWriter
Returns true if the output will have no entity references; returns false (the default) otherwise.
isExpandingReferences() - Method in class gnu.xml.pipeline.DomConsumer
Returns true if the consumer is expanding entity references in place (the default), and false if childless EntityReference nodes should instead be created.
isHidingComments() - Method in class gnu.xml.pipeline.DomConsumer
Returns true if the consumer is hiding comments (the default), and false if they should be placed into the output document.
isHidingWhitespace() - Method in class gnu.xml.pipeline.DomConsumer
Returns true if the consumer is hiding ignorable whitespace (the default), and false if such whitespace should be placed into the output document as children of element nodes.
isIgnorable() - Method in class gnu.xml.dom.DomText
Returns the flag recording whether the text contains "ignorable whitespace".
isIgnoringComments() - Method in class javax.xml.parsers.DocumentBuilderFactory
 
isIgnoringElementContentWhitespace() - Method in class javax.xml.parsers.DocumentBuilderFactory
 
isNamespaceAware() - Method in class javax.xml.parsers.SAXParserFactory
 
isNamespaceAware() - Method in class javax.xml.parsers.DocumentBuilderFactory
 
isNamespaceAware() - Method in class javax.xml.parsers.DocumentBuilder
 
isNamespaceAware() - Method in class javax.xml.parsers.SAXParser
 
isPrettyPrinting() - Method in class gnu.xml.util.XMLWriter
Returns value of flag controlling pretty printing.
isReadonly() - Method in class gnu.xml.dom.DomNode
Exposes the internal "readonly" flag.
isReadonly() - Method in class gnu.xml.dom.DomNamedNodeMap
Exposes the internal "readonly" flag.
isSavingExtraNodes() - Method in class gnu.xml.pipeline.DomConsumer
Returns true if the consumer is saving "extra" nodes, and false (the default) otherwise.
isSupported(String, String) - Method in class gnu.xml.dom.DomNode
DOM L2 Consults the DOM implementation to determine if the requested feature is supported.
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.
isUsingNamespaces() - Method in class gnu.xml.pipeline.DomConsumer
Returns true (the default for L2 DOM implementations) if the consumer is using an "XML + Namespaces" style DOM construction, which will cause fatal errors on some legal XML 1.0 documents.
isValidating() - Method in class javax.xml.parsers.SAXParserFactory
 
isValidating() - Method in class javax.xml.parsers.DocumentBuilderFactory
 
isValidating() - Method in class javax.xml.parsers.DocumentBuilder
 
isValidating() - Method in class javax.xml.parsers.SAXParser
 
isXhtml() - Method in class gnu.xml.util.XMLWriter
Returns true if the output attempts to echo the input following "transitional" XHTML rules and matching the "HTML Compatibility Guidelines" so that an HTML version 3 browser can read the output as HTML; returns false (the default) othewise.
item(int) - Method in class gnu.xml.dom.DomNode
DOM L1 (NodeList) Returns the item with the specified index in this NodeList, else null.
item(int) - Method in class gnu.xml.dom.DomNamedNodeMap
DOM L1 Returns the indexed item from the map, or null.
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.

J

javax.xml.parsers - package javax.xml.parsers
 
JAXPFactory - class gnu.xml.aelfred2.JAXPFactory.
Configurable factory to create an Ælfred2 JAXP parser; required to bootstrap using JAXP.
JAXPFactory - class gnu.xml.dom.JAXPFactory.
DOM bootstrapping API, for use with JAXP.
JAXPFactory() - Constructor for class gnu.xml.aelfred2.JAXPFactory
Constructs a factory which normally returns a non-validating parser.
JAXPFactory() - Constructor for class gnu.xml.dom.JAXPFactory
Default constructor.

L

LEXICAL_HANDLER - Static variable in class gnu.xml.pipeline.EventFilter
SAX2 property identifier for LexicalHandler events
LexicalHandler - interface org.xml.sax.ext.LexicalHandler.
SAX2 extension handler for lexical events.
LinkFilter - class gnu.xml.pipeline.LinkFilter.
Pipeline filter to remember (X)HTML links found in an (X)HTML document, so they can later be crawled.
LinkFilter() - Constructor for class gnu.xml.pipeline.LinkFilter
Constructs a new event filter, which collects links in private data structure for later enumeration.
LinkFilter(EventConsumer) - Constructor for class gnu.xml.pipeline.LinkFilter
Constructs a new event filter, which collects links in private data structure for later enumeration and passes all events, unmodified, to the next consumer.
Locator - interface org.xml.sax.Locator.
Interface for associating a SAX event with a document location.
LocatorImpl - class org.xml.sax.helpers.LocatorImpl.
Provide an optional convenience implementation of Locator.
LocatorImpl() - Constructor for class org.xml.sax.helpers.LocatorImpl
Zero-argument constructor.
LocatorImpl(Locator) - Constructor for class org.xml.sax.helpers.LocatorImpl
Copy constructor.

M

main(String[]) - Static method in class gnu.xml.util.DoParse
Command line invoker for this class; pass a filename or URL as the first argument, and a pipeline description as the second.
makeParser() - Static method in class org.xml.sax.helpers.ParserFactory
Deprecated. Create a new SAX parser using the `org.xml.sax.parser' system property.
makeParser(String) - Static method in class org.xml.sax.helpers.ParserFactory
Deprecated. Create a new SAX parser object using the class name provided.
makeReadonly() - Method in class gnu.xml.dom.DomNode
Sets the internal "readonly" flag so this subtree can't be changed.
makeReadonly() - Method in class gnu.xml.dom.DomNamedNodeMap
Sets the internal "readonly" flag so the node and its children can't be changed.
makeReadonly() - Method in class gnu.xml.dom.DomDoctype
Sets the internal "readonly" flag so the node and its associated data (only lists of entities and notations, no type information at the moment) can't be changed.
makeReadonly() - Method in class gnu.xml.dom.DomElement
Marks this element, its children, and its associated attributes as readonly.

N

nameAndTypeEquals(Node) - Method in class gnu.xml.dom.DomNode
Returns true iff node types match, and either (a) both nodes have no namespace and their getNodeName() values are the same, or (b) both nodes have the same getNamespaceURI() and same getLocalName() values.
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.
NamespaceSupport - class org.xml.sax.helpers.NamespaceSupport.
Encapsulate Namespace logic for use by SAX drivers.
NamespaceSupport() - Constructor for class org.xml.sax.helpers.NamespaceSupport
Create a new Namespace support object.
newDocument() - Method in class javax.xml.parsers.DocumentBuilder
 
newDocumentBuilder() - Method in class gnu.xml.dom.JAXPFactory
Constructs a JAXP document builder which uses the default JAXP SAX2 parser and the DOM implementation in this package.
newDocumentBuilder() - Method in class javax.xml.parsers.DocumentBuilderFactory
 
newInstance() - Static method in class javax.xml.parsers.SAXParserFactory
 
newInstance() - Static method in class javax.xml.parsers.DocumentBuilderFactory
 
newSAXParser() - Method in class gnu.xml.aelfred2.JAXPFactory
 
newSAXParser() - Method in class javax.xml.parsers.SAXParserFactory
Returns a new instance of a SAXParser using the platform default implementation and the currently specified factory feature flag settings.
nextNode() - Method in class gnu.xml.dom.DomIterator
DOM L2 Returns the next node in a forward iteration, masked and filtered.
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.
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 gnu.xml.dom.DomNode
DOM L1 (relocated in DOM L2) In this node and all contained nodes (including attributes if relevant) merge adjacent 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.
notationDecl(String, String, String) - Method in class gnu.xml.pipeline.EventFilter
SAX1: passes this callback to the next consumer, if any
notationDecl(String, String, String) - Method in class gnu.xml.pipeline.TeeConsumer
 
notationDecl(String, String, String) - Method in class gnu.xml.pipeline.DomConsumer.Handler
 
notationDecl(String, String, String) - Method in class gnu.xml.pipeline.ValidationConsumer
DTDHandler Records the notation name, for checking NOTATIONS attribute values and declararations of unparsed entities.
notationDecl(String, String, String) - Method in class gnu.xml.pipeline.WellFormednessFilter
 
notationDecl(String, String, String) - Method in class gnu.xml.util.XMLWriter
SAX1: called on notation declarations
notationDecl(String, String, String) - Method in interface org.xml.sax.DTDHandler
Receive notification of a notation declaration event.
notationDecl(String, String, String) - Method in class org.xml.sax.HandlerBase
Deprecated. Receive notification of a notation declaration.
notationDecl(String, String, String) - Method in class org.xml.sax.helpers.DefaultHandler
Receive notification of a notation declaration.
notationDecl(String, String, String) - Method in class org.xml.sax.helpers.XMLFilterImpl
Filter a notation declaration event.
NSFilter - class gnu.xml.pipeline.NSFilter.
This filter ensures that element and attribute names are properly prefixed, and that such prefixes are declared.
NSFilter(EventConsumer) - Constructor for class gnu.xml.pipeline.NSFilter
Passes events through to the specified consumer, after first processing them.

O

org.w3c.dom - package org.w3c.dom
Contains the core and "XML" feature set of the DOM Level 2 Recommendation.
org.xml.sax - package org.xml.sax
This package provides the core SAX1 and SAX2 APIs.
org.xml.sax.ext - package org.xml.sax.ext
This package contains interfaces to optional SAX2 handlers, providing parts of SAX2 which (like the standard feature flags and unlike namespaces) can't be layered over SAX1.
org.xml.sax.helpers - package org.xml.sax.helpers
This package contains "helper" classes that are used to bootstrap SAX-based applications.

P

parse(File) - Method in class javax.xml.parsers.DocumentBuilder
 
parse(File, DefaultHandler) - Method in class javax.xml.parsers.SAXParser
 
parse(File, HandlerBase) - Method in class javax.xml.parsers.SAXParser
 
parse(InputSource) - Method in class gnu.xml.aelfred2.SAXDriver
SAX1, SAX2: Auxiliary API to parse an XML document, used mostly when no URI is available.
parse(InputSource) - Method in class gnu.xml.aelfred2.XmlReader
SAX1: Auxiliary API to parse an XML document, used mostly when no URI is available.
parse(InputSource) - Method in class gnu.xml.util.DomParser
SAX1: Parses the previously provided DOM document (the input parameter is ignored).
parse(InputSource) - Method in interface org.xml.sax.Parser
Deprecated. Parse an XML document.
parse(InputSource) - Method in interface org.xml.sax.XMLReader
Parse an XML document.
parse(InputSource) - Method in class org.xml.sax.helpers.XMLReaderAdapter
Parse the document.
parse(InputSource) - Method in class org.xml.sax.helpers.XMLFilterImpl
Parse a document.
parse(InputSource) - Method in class org.xml.sax.helpers.ParserAdapter
Parse an XML document.
parse(InputSource) - Method in class javax.xml.parsers.DocumentBuilder
 
parse(InputSource, DefaultHandler) - Method in class javax.xml.parsers.SAXParser
 
parse(InputSource, HandlerBase) - Method in class javax.xml.parsers.SAXParser
 
parse(InputStream) - Method in class javax.xml.parsers.DocumentBuilder
Avoid using this call; provide the system ID wherever possible.
parse(InputStream, DefaultHandler) - Method in class javax.xml.parsers.SAXParser
 
parse(InputStream, DefaultHandler, String) - Method in class javax.xml.parsers.SAXParser
 
parse(InputStream, HandlerBase) - Method in class javax.xml.parsers.SAXParser
 
parse(InputStream, HandlerBase, String) - Method in class javax.xml.parsers.SAXParser
 
parse(InputStream, String) - Method in class javax.xml.parsers.DocumentBuilder
 
parse(String) - Method in class gnu.xml.aelfred2.SAXDriver
SAX1, SAX2: Preferred API to parse an XML document, using a system identifier (URI).
parse(String) - Method in class gnu.xml.aelfred2.XmlReader
SAX1: Preferred API to parse an XML document, using a system identifier (URI).
parse(String) - Method in class gnu.xml.util.DomParser
SAX1: Parses the previously provided DOM document (the input parameter is ignored).
parse(String) - Method in interface org.xml.sax.Parser
Deprecated. Parse an XML document from a system identifier (URI).
parse(String) - Method in interface org.xml.sax.XMLReader
Parse an XML document from a system identifier (URI).
parse(String) - Method in class org.xml.sax.helpers.XMLReaderAdapter
Parse the document.
parse(String) - Method in class org.xml.sax.helpers.XMLFilterImpl
Parse a document.
parse(String) - Method in class org.xml.sax.helpers.ParserAdapter
Parse an XML document.
parse(String) - Method in class javax.xml.parsers.DocumentBuilder
 
parse(String, DefaultHandler) - Method in class javax.xml.parsers.SAXParser
 
parse(String, HandlerBase) - Method in class javax.xml.parsers.SAXParser
 
Parser - interface org.xml.sax.Parser.
Deprecated. This interface has been replaced by the SAX2 XMLReader interface, which includes Namespace support.
ParserAdapter - class org.xml.sax.helpers.ParserAdapter.
Adapt a SAX1 Parser as a SAX2 XMLReader.
ParserAdapter() - Constructor for class org.xml.sax.helpers.ParserAdapter
Construct a new parser adapter.
ParserAdapter(Parser) - Constructor for class org.xml.sax.helpers.ParserAdapter
Construct a new parser adapter.
ParserConfigurationException - exception javax.xml.parsers.ParserConfigurationException.
ParserConfigurationException
ParserConfigurationException() - Constructor for class javax.xml.parsers.ParserConfigurationException
 
ParserConfigurationException(String) - Constructor for class javax.xml.parsers.ParserConfigurationException
 
ParserFactory - class org.xml.sax.helpers.ParserFactory.
Deprecated. This class works with the deprecated Parser interface.
PipelineFactory - class gnu.xml.pipeline.PipelineFactory.
This provides static factory methods for creating simple event pipelines.
popContext() - Method in class org.xml.sax.helpers.NamespaceSupport
Revert to the previous Namespace context.
preventDefault() - Method in class gnu.xml.dom.DomEvent
Requests that whoever dispatched the event not perform their default processing when event delivery completes.
previousNode() - Method in class gnu.xml.dom.DomIterator
DOM L2 Returns the next node in a backward iteration, masked and filtered.
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.
processingInstruction(String, String) - Method in class gnu.xml.pipeline.EventFilter
SAX2: passes this callback to the next consumer, if any
processingInstruction(String, String) - Method in class gnu.xml.pipeline.TeeConsumer
 
processingInstruction(String, String) - Method in class gnu.xml.pipeline.DomConsumer.Handler
 
processingInstruction(String, String) - Method in class gnu.xml.pipeline.WellFormednessFilter
 
processingInstruction(String, String) - Method in class gnu.xml.util.XMLWriter
SAX1: reports a PI
processingInstruction(String, String) - Method in interface org.xml.sax.ContentHandler
Receive notification of a processing instruction.
processingInstruction(String, String) - Method in class org.xml.sax.HandlerBase
Deprecated. Receive notification of a processing instruction.
processingInstruction(String, String) - Method in interface org.xml.sax.DocumentHandler
Deprecated. Receive notification of a processing instruction.
processingInstruction(String, String) - Method in class org.xml.sax.helpers.DefaultHandler
Receive notification of a processing instruction.
processingInstruction(String, String) - Method in class org.xml.sax.helpers.XMLReaderAdapter
Adapt a SAX2 processing instruction event.
processingInstruction(String, String) - Method in class org.xml.sax.helpers.XMLFilterImpl
Filter a processing instruction event.
processingInstruction(String, String) - Method in class org.xml.sax.helpers.ParserAdapter
Adapt a SAX1 processing instruction event.
processName(String, String[], boolean) - Method in class org.xml.sax.helpers.NamespaceSupport
Process a raw XML 1.0 name.
PROPERTY_URI - Static variable in class gnu.xml.pipeline.EventFilter
SAX2 URI prefix for standard properties (mostly for handlers).
pushContext() - Method in class org.xml.sax.helpers.NamespaceSupport
Start a new Namespace context.

R

removeAllLinks() - Method in class gnu.xml.pipeline.LinkFilter
Removes records about all links reported to the event stream, as if the filter were newly created.
removeAttribute(int) - Method in class org.xml.sax.helpers.AttributesImpl
Remove an attribute from the list.
removeAttribute(String) - Method in class gnu.xml.dom.DomElement
DOM L1 Removes the appropriate attribute node.
removeAttribute(String) - Method in class org.xml.sax.helpers.AttributeListImpl
Deprecated. Remove an attribute from the list.
removeAttribute(String) - Method in interface org.w3c.dom.Element
Removes an attribute by name.
removeAttributeNode(Attr) - Method in class gnu.xml.dom.DomElement
DOM L1 Removes the appropriate attribute node; the name is the nodeName property of the attribute.
removeAttributeNode(Attr) - Method in interface org.w3c.dom.Element
Removes the specified attribute node.
removeAttributeNS(String, String) - Method in class gnu.xml.dom.DomElement
DOM L2 Removes the appropriate attribute node; the name combines the namespace name and the local part.
removeAttributeNS(String, String) - Method in interface org.w3c.dom.Element
Removes an attribute by local name and namespace URI.
removeChild(Node) - Method in class gnu.xml.dom.DomNode
DOM L1 Removes the specified child from this node's list of children, or else reports an exception.
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 gnu.xml.dom.DomNode
DOM L2 (Events) Unregisters an event listener.
removeNamedItem(String) - Method in class gnu.xml.dom.DomNamedNodeMap
DOM L1 Removes the named item from the map, or reports an exception; names are just the nodeName property.
removeNamedItem(String) - Method in interface org.w3c.dom.NamedNodeMap
Removes a node specified by name.
removeNamedItemNS(String, String) - Method in class gnu.xml.dom.DomNamedNodeMap
DOM L2 Removes the named item from the map, or reports an exception; names are the localName and namespaceURI properties.
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 gnu.xml.dom.DomNode
DOM L1 Replaces the specified node in this node's list of children.
replaceChild(Node, Node) - Method in class gnu.xml.dom.DomDocument
DOM L1 Replaces the specified node in this node's list of children, enforcing the constraints that there be only one root element and one document type child.
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 gnu.xml.dom.DomCharacterData
DOM L1 Modifies the value of this node.
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.
reset() - Method in class gnu.xml.pipeline.WellFormednessFilter
Resets state as if any preceding event stream was well formed.
reset() - Method in class org.xml.sax.helpers.NamespaceSupport
Reset this Namespace support object for reuse.
resolveEntity(String, String) - Method in class gnu.xml.util.Resolver
Uses a local dictionary of public identifiers to resolve URIs, normally with the goal of minimizing network traffic or latencies.
resolveEntity(String, String) - Method in interface org.xml.sax.EntityResolver
Allow the application to resolve external entities.
resolveEntity(String, String) - Method in class org.xml.sax.HandlerBase
Deprecated. Resolve an external entity.
resolveEntity(String, String) - Method in class org.xml.sax.helpers.DefaultHandler
Resolve an external entity.
resolveEntity(String, String) - Method in class org.xml.sax.helpers.XMLFilterImpl
Filter an external entity resolution.
Resolver - class gnu.xml.util.Resolver.
Utility implementation of a SAX resolver, which can be used to improve network utilization of SAX based XML components.
Resolver(Dictionary) - Constructor for class gnu.xml.util.Resolver
Constructs a resolver which understands how to map PUBLIC identifiers to other URIs, typically for local copies of standard DTD components.

S

SAXDriver - class gnu.xml.aelfred2.SAXDriver.
An enhanced SAX2 version of Microstar's Ælfred XML parser.
SAXDriver() - Constructor for class gnu.xml.aelfred2.SAXDriver
Constructs a SAX Parser.
SAXException - exception org.xml.sax.SAXException.
Encapsulate a general SAX error or warning.
SAXException() - Constructor for class org.xml.sax.SAXException
Create a new SAXException.
SAXException(Exception) - Constructor for class org.xml.sax.SAXException
Create a new SAXException wrapping an existing exception.
SAXException(String) - Constructor for class org.xml.sax.SAXException
Create a new SAXException.
SAXException(String, Exception) - Constructor for class org.xml.sax.SAXException
Create a new SAXException from an existing exception.
SAXNotRecognizedException - exception org.xml.sax.SAXNotRecognizedException.
Exception class for an unrecognized identifier.
SAXNotRecognizedException() - Constructor for class org.xml.sax.SAXNotRecognizedException
Default constructor.
SAXNotRecognizedException(String) - Constructor for class org.xml.sax.SAXNotRecognizedException
Construct a new exception with the given message.
SAXNotSupportedException - exception org.xml.sax.SAXNotSupportedException.
Exception class for an unsupported operation.
SAXNotSupportedException() - Constructor for class org.xml.sax.SAXNotSupportedException
Construct a new exception with no message.
SAXNotSupportedException(String) - Constructor for class org.xml.sax.SAXNotSupportedException
Construct a new exception with the given message.
SAXParseException - exception org.xml.sax.SAXParseException.
Encapsulate an XML parse error or warning.
SAXParseException(String, Locator) - Constructor for class org.xml.sax.SAXParseException
Create a new SAXParseException from a message and a Locator.
SAXParseException(String, Locator, Exception) - Constructor for class org.xml.sax.SAXParseException
Wrap an existing exception in a SAXParseException.
SAXParseException(String, String, String, int, int) - Constructor for class org.xml.sax.SAXParseException
Create a new SAXParseException.
SAXParseException(String, String, String, int, int, Exception) - Constructor for class org.xml.sax.SAXParseException
Create a new SAXParseException with an embedded exception.
SAXParser - class javax.xml.parsers.SAXParser.
SAXParser
SAXParser() - Constructor for class javax.xml.parsers.SAXParser
 
SAXParserFactory - class javax.xml.parsers.SAXParserFactory.
SAXParserFactory is used to bootstrap JAXP wrappers for SAX parsers.
SAXParserFactory() - Constructor for class javax.xml.parsers.SAXParserFactory
 
setAttribute(int, String, String, String, String, String) - Method in class org.xml.sax.helpers.AttributesImpl
Set an attribute in the list.
setAttribute(String, Object) - Method in class gnu.xml.dom.JAXPFactory
There seems to be no useful specification for attribute names
setAttribute(String, Object) - Method in class javax.xml.parsers.DocumentBuilderFactory
 
setAttribute(String, String) - Method in class gnu.xml.dom.DomElement
DOM L1 Modifies an existing attribute to have the specified value, or creates a new one with that value.
setAttribute(String, String) - Method in interface org.w3c.dom.Element
Adds a new attribute.
setAttributeList(AttributeList) - Method in class org.xml.sax.helpers.AttributeListImpl
Deprecated. Set the attribute list, discarding previous contents.
setAttributeNode(Attr) - Method in class gnu.xml.dom.DomElement
DOM L1 Stores the specified attribute, optionally overwriting any existing one with that name.
setAttributeNode(Attr) - Method in interface org.w3c.dom.Element
Adds a new attribute node.
setAttributeNodeNS(Attr) - Method in class gnu.xml.dom.DomElement
DOM L2 Stores the specified attribute, optionally overwriting any existing one with that name.
setAttributeNodeNS(Attr) - Method in interface org.w3c.dom.Element
Adds a new attribute.
setAttributeNS(String, String, String) - Method in class gnu.xml.dom.DomElement
DOM L2 Modifies an existing attribute to have the specified value, or creates a new one with that value.
setAttributeNS(String, String, String) - Method in interface org.w3c.dom.Element
Adds a new attribute.
setAttributes(Attributes) - Method in class org.xml.sax.helpers.AttributesImpl
Copy an entire Attributes object.
setByteStream(InputStream) - Method in class org.xml.sax.InputSource
Set the byte stream for this input source.
setCallTarget(String) - Method in class gnu.xml.pipeline.CallFilter
Assigns the URI of the call target to be used.
setCanonical(boolean) - Method in class gnu.xml.util.XMLWriter
Sets the output style to be canonicalized.
setCharacterStream(Reader) - Method in class org.xml.sax.InputSource
Set the character stream for this input source.
setCheckingCharacters(boolean) - Method in class gnu.xml.dom.DomDocument
Controls whether certain expensive checks, duplicating those that conformant XML parsers must perform, are made.
setCoalescing(boolean) - Method in class javax.xml.parsers.DocumentBuilderFactory
 
setColumnNumber(int) - Method in class org.xml.sax.helpers.LocatorImpl
Set the column number for this locator (1-based).
setContentHandler(ContentHandler) - Method in class gnu.xml.aelfred2.SAXDriver
SAX2: Assigns the object used to report the logical content of an XML document.
setContentHandler(ContentHandler) - Method in class gnu.xml.aelfred2.XmlReader
SAX2: Assigns the object used to report the logical content of an XML document.
setContentHandler(ContentHandler) - Method in class gnu.xml.pipeline.EventFilter
Assigns the content handler to use; a null handler indicates that these events will not be forwarded.
setContentHandler(ContentHandler) - Method in class gnu.xml.util.DomParser
SAX2: Assigns the object used to report the logical content of an XML document.
setContentHandler(ContentHandler) - Method in interface org.xml.sax.XMLReader
Allow an application to register a content event handler.
setContentHandler(ContentHandler) - Method in class org.xml.sax.helpers.XMLFilterImpl
Set the content event handler.
setContentHandler(ContentHandler) - Method in class org.xml.sax.helpers.ParserAdapter
Set the content handler.
setData(String) - Method in class gnu.xml.dom.DomCharacterData
DOM L1 Assigns the value of this node; same as setNodeValue.
setData(String) - Method in class gnu.xml.dom.DomPI
DOM L1 Assigns the data associated with the processing instruction; same as setNodeValue.
setData(String) - Method in interface org.w3c.dom.CharacterData
 
setData(String) - Method in interface org.w3c.dom.ProcessingInstruction
 
setDocumentHandler(DocumentHandler) - Method in class gnu.xml.aelfred2.SAXDriver
Deprecated. SAX2 programs should use the XMLReader interface and a ContentHandler.
setDocumentHandler(DocumentHandler) - Method in interface org.xml.sax.Parser
Deprecated. Allow an application to register a document event handler.
setDocumentHandler(DocumentHandler) - Method in class org.xml.sax.helpers.XMLReaderAdapter
Register the SAX1 document event handler.
setDocumentLocator(Locator) - Method in class gnu.xml.pipeline.EventFilter
SAX2: passes this callback to the next consumer, if any
setDocumentLocator(Locator) - Method in class gnu.xml.pipeline.TeeConsumer
 
setDocumentLocator(Locator) - Method in class gnu.xml.pipeline.DomConsumer.Handler
 
setDocumentLocator(Locator) - Method in class gnu.xml.pipeline.WellFormednessFilter
Throws an exception when called after startDocument.
setDocumentLocator(Locator) - Method in class gnu.xml.util.XMLWriter
SAX1: provides parser status information
setDocumentLocator(Locator) - Method in interface org.xml.sax.ContentHandler
Receive an object for locating the origin of SAX document events.
setDocumentLocator(Locator) - Method in class org.xml.sax.HandlerBase
Deprecated. Receive a Locator object for document events.
setDocumentLocator(Locator) - Method in interface org.xml.sax.DocumentHandler
Deprecated. Receive an object for locating the origin of SAX document events.
setDocumentLocator(Locator) - Method in class org.xml.sax.helpers.DefaultHandler
Receive a Locator object for document events.
setDocumentLocator(Locator) - Method in class org.xml.sax.helpers.XMLReaderAdapter
Set a document locator.
setDocumentLocator(Locator) - Method in class org.xml.sax.helpers.XMLFilterImpl
Filter a new document locator event.
setDocumentLocator(Locator) - Method in class org.xml.sax.helpers.ParserAdapter
Adapt a SAX1 document locator event.
setDTDHandler(DTDHandler) - Method in class gnu.xml.aelfred2.SAXDriver
SAX1, SAX2: Set the DTD handler for this parser.
setDTDHandler(DTDHandler) - Method in class gnu.xml.aelfred2.XmlReader
SAX1 Assigns DTD handler
setDTDHandler(DTDHandler) - Method in class gnu.xml.pipeline.EventFilter
Assigns the DTD handler to use; a null handler indicates that these events will not be forwarded.
setDTDHandler(DTDHandler) - Method in class gnu.xml.util.DomParser
SAX1: Provides an object which may be used to intercept declarations related to notations and unparsed entities.
setDTDHandler(DTDHandler) - Method in interface org.xml.sax.Parser
Deprecated. Allow an application to register a DTD event handler.
setDTDHandler(DTDHandler) - Method in interface org.xml.sax.XMLReader
Allow an application to register a DTD event handler.
setDTDHandler(DTDHandler) - Method in class org.xml.sax.helpers.XMLReaderAdapter
Register the DTD event handler.
setDTDHandler(DTDHandler) - Method in class org.xml.sax.helpers.XMLFilterImpl
Set the DTD event handler.
setDTDHandler(DTDHandler) - Method in class org.xml.sax.helpers.ParserAdapter
Set the DTD handler.
setEncoding(String) - Method in class org.xml.sax.InputSource
Set the character encoding, if known.
setEntityResolver(EntityResolver) - Method in class gnu.xml.aelfred2.SAXDriver
SAX1, SAX2: Set the entity resolver for this parser.
setEntityResolver(EntityResolver) - Method in class gnu.xml.aelfred2.XmlReader
SAX1 Assigns parser's entity resolver
setEntityResolver(EntityResolver) - Method in class gnu.xml.util.DomParser
SAX1: Provides an object which may be used when resolving external entities during parsing (both general and parameter entities).
setEntityResolver(EntityResolver) - Method in interface org.xml.sax.Parser
Deprecated. Allow an application to register a custom entity resolver.
setEntityResolver(EntityResolver) - Method in interface org.xml.sax.XMLReader
Allow an application to register an entity resolver.
setEntityResolver(EntityResolver) - Method in class org.xml.sax.helpers.XMLReaderAdapter
Register the entity resolver.
setEntityResolver(EntityResolver) - Method in class org.xml.sax.helpers.XMLFilterImpl
Set the entity resolver.
setEntityResolver(EntityResolver) - Method in class org.xml.sax.helpers.ParserAdapter
Set the entity resolver.
setEntityResolver(EntityResolver) - Method in class javax.xml.parsers.DocumentBuilder
 
setEOL(String) - Method in class gnu.xml.util.XMLWriter
Assigns the line ending style to be used on output.
setErrorHandler(ErrorHandler) - Method in class gnu.xml.aelfred2.SAXDriver
SAX1, SAX2: Set the error handler for this parser.
setErrorHandler(ErrorHandler) - Method in class gnu.xml.aelfred2.XmlReader
SAX1 Assigns error handler
setErrorHandler(ErrorHandler) - Method in class gnu.xml.pipeline.EventFilter
Records the error handler that should be used by this stage, and passes it on to any subsequent stage.
setErrorHandler(ErrorHandler) - Method in class gnu.xml.pipeline.CallFilter
Assigns the error handler to be used to present most fatal errors.
setErrorHandler(ErrorHandler) - Method in class gnu.xml.pipeline.TeeConsumer
Provides the error handler to both subsequent nodes of this filter stage.
setErrorHandler(ErrorHandler) - Method in class gnu.xml.pipeline.DomConsumer
 
setErrorHandler(ErrorHandler) - Method in interface gnu.xml.pipeline.EventConsumer
This method provides a filter stage with a handler that abstracts presentation of warnings and both recoverable and fatal errors.
setErrorHandler(ErrorHandler) - Method in class gnu.xml.util.XMLWriter
Assigns the error handler to be used to present most fatal errors.
setErrorHandler(ErrorHandler) - Method in class gnu.xml.util.DomParser
SAX1: Provides an object which receives callbacks for XML errors of all levels (fatal, nonfatal, warning).
setErrorHandler(ErrorHandler) - Method in interface org.xml.sax.Parser
Deprecated. Allow an application to register an error event handler.
setErrorHandler(ErrorHandler) - Method in interface org.xml.sax.XMLReader
Allow an application to register an error event handler.
setErrorHandler(ErrorHandler) - Method in class org.xml.sax.helpers.XMLReaderAdapter
Register the error event handler.
setErrorHandler(ErrorHandler) - Method in class org.xml.sax.helpers.XMLFilterImpl
Set the error event handler.
setErrorHandler(ErrorHandler) - Method in class org.xml.sax.helpers.ParserAdapter
Set the error handler.
setErrorHandler(ErrorHandler) - Method in class javax.xml.parsers.DocumentBuilder
 
setExpandEntityReferences(boolean) - Method in class javax.xml.parsers.DocumentBuilderFactory
 
setExpandingEntities(boolean) - Method in class gnu.xml.util.XMLWriter
Controls whether the output text contains references to entities (the default), or instead contains the expanded values of those entities.
setExpandingReferences(boolean) - Method in class gnu.xml.pipeline.DomConsumer
Controls whether the consumer will expand entity references in place, or will instead replace them with childless entity reference nodes.
setFeature(String, boolean) - Method in class gnu.xml.aelfred2.SAXDriver
SAX2: Sets the state of feature flags in this parser.
setFeature(String, boolean) - Method in class gnu.xml.aelfred2.JAXPFactory
 
setFeature(String, boolean) - Method in class gnu.xml.aelfred2.XmlReader
SAX2: Sets the state of features supported in this parser.
setFeature(String, boolean) - Method in class gnu.xml.util.DomParser
SAX2: Sets the state of features supported in this parser.
setFeature(String, boolean) - Method in interface org.xml.sax.XMLReader
Set the state of a feature.
setFeature(String, boolean) - Method in class org.xml.sax.helpers.XMLFilterImpl
Set the state of a feature.
setFeature(String, boolean) - Method in class org.xml.sax.helpers.ParserAdapter
Set a feature for the parser.
setFeature(String, boolean) - Method in class javax.xml.parsers.SAXParserFactory
Establishes a factory parameter corresponding to the specified feature flag.
setHandler(DomConsumer.Handler) - Method in class gnu.xml.pipeline.DomConsumer
This is the hook through which a subclass provides a handler which knows how to access DOM extensions, specific to some implementation, to record additional data in a DOM.
setHidingComments(boolean) - Method in class gnu.xml.pipeline.DomConsumer
Controls whether the consumer is hiding comments.
setHidingWhitespace(boolean) - Method in class gnu.xml.pipeline.DomConsumer
Controls whether the consumer hides ignorable whitespace
setIgnorable(boolean) - Method in class gnu.xml.dom.DomText
Sets a flag which may be used to record whether the text contains "ignorable whitespace", which can be discarded by most applications.
setIgnoringComments(boolean) - Method in class javax.xml.parsers.DocumentBuilderFactory
 
setIgnoringElementContentWhitespace(boolean) - Method in class javax.xml.parsers.DocumentBuilderFactory
 
setLineNumber(int) - Method in class org.xml.sax.helpers.LocatorImpl
Set the line number for this locator (1-based).
setLocale(Locale) - Method in class gnu.xml.aelfred2.SAXDriver
SAX1: Sets the locale used for diagnostics; currently, only locales using the English language are supported.
setLocale(Locale) - Method in class gnu.xml.aelfred2.XmlReader
SAX1: Sets the locale used for diagnostics; currently, only locales using the English language are supported.
setLocale(Locale) - Method in class gnu.xml.util.DomParser
SAX1: Identifies the locale which the parser should use for the diagnostics it provides.
setLocale(Locale) - Method in interface org.xml.sax.Parser
Deprecated. Allow an application to request a locale for errors and warnings.
setLocale(Locale) - Method in class org.xml.sax.helpers.XMLReaderAdapter
Set the locale for error reporting.
setLocalName(int, String) - Method in class org.xml.sax.helpers.AttributesImpl
Set the local name of a specific attribute.
setNamedItem(Node) - Method in class gnu.xml.dom.DomNamedNodeMap
DOM L1 Stores the named item into the map, optionally overwriting any existing node with that name.
setNamedItem(Node) - Method in interface org.w3c.dom.NamedNodeMap
Adds a node using its nodeName attribute.
setNamedItemNS(Node) - Method in class gnu.xml.dom.DomNamedNodeMap
DOM L2 Stores the named item into the map, optionally overwriting any existing node with that fully qualified name.
setNamedItemNS(Node) - Method in interface org.w3c.dom.NamedNodeMap
Adds a node using its namespaceURI and localName.
setNamespaceAware(boolean) - Method in class javax.xml.parsers.SAXParserFactory
 
setNamespaceAware(boolean) - Method in class javax.xml.parsers.DocumentBuilderFactory
 
setNodeValue(String) - Method in class gnu.xml.dom.DomNode
DOM L1 Does nothing; this must be overridden (along with the getNodeValue method) for nodes with a non-null defined value.
setNodeValue(String) - Method in class gnu.xml.dom.DomAttr
DOM L1 Assigns the attribute value; using this API, no entity or character references will exist.
setNodeValue(String) - Method in class gnu.xml.dom.DomCharacterData
DOM L1 Assigns the value of this node.
setNodeValue(String) - Method in class gnu.xml.dom.DomPI
DOM L1 Assigns the data associated with the processing instruction.
setNodeValue(String) - Method in interface org.w3c.dom.Node
 
setOwnerElement(Element) - Method in class gnu.xml.dom.DomAttr
Records the element with which this attribute is associated.
setParent(XMLReader) - Method in interface org.xml.sax.XMLFilter
Set the parent reader.
setParent(XMLReader) - Method in class org.xml.sax.helpers.XMLFilterImpl
Set the parent reader.
setPrefix(String) - Method in class gnu.xml.dom.DomNode
DOM L2 Does nothing; this must be overridden (along with the getPrefix method) for element and attribute nodes.
setPrefix(String) - Method in class gnu.xml.dom.DomNsNode
DOM L2 Assigns the prefix part of the node's name (before any colon).
setPrefix(String) - Method in interface org.w3c.dom.Node
 
setPrettyPrinting(boolean) - Method in class gnu.xml.util.XMLWriter
Controls pretty-printing, which by default is not enabled (and currently is most useful for XHTML output).
setProperty(String, Object) - Method in class gnu.xml.aelfred2.SAXDriver
SAX2: Assigns the specified property.
setProperty(String, Object) - Method in class gnu.xml.aelfred2.XmlReader
SAX2: Assigns the specified property.
setProperty(String, Object) - Method in class gnu.xml.pipeline.EventFilter
Stores the property, normally a handler; a null handler indicates that these events will not be forwarded.
setProperty(String, Object) - Method in class gnu.xml.util.DomParser
SAX2: Assigns the specified property.
setProperty(String, Object) - Method in interface org.xml.sax.XMLReader
Set the value of a property.
setProperty(String, Object) - Method in class org.xml.sax.helpers.XMLFilterImpl
Set the value of a property.
setProperty(String, Object) - Method in class org.xml.sax.helpers.ParserAdapter
Set a parser property.
setProperty(String, Object) - Method in class javax.xml.parsers.SAXParser
 
setPublicId(String) - Method in class org.xml.sax.InputSource
Set the public identifier for this input source.
setPublicId(String) - Method in class org.xml.sax.helpers.LocatorImpl
Set the public identifier for this locator.
setQName(int, String) - Method in class org.xml.sax.helpers.AttributesImpl
Set the qualified name of a specific attribute.
setSavingExtraNodes(boolean) - Method in class gnu.xml.pipeline.DomConsumer
Controls whether the consumer will save "extra" nodes.
setSpecified(boolean) - Method in class gnu.xml.dom.DomAttr
Records whether this attribute was in the source text.
setSystemId(String) - Method in class org.xml.sax.InputSource
Set the system identifier for this input source.
setSystemId(String) - Method in class org.xml.sax.helpers.LocatorImpl
Set the system identifier for this locator.
setType(int, String) - Method in class org.xml.sax.helpers.AttributesImpl
Set the type of a specific attribute.
setURI(int, String) - Method in class org.xml.sax.helpers.AttributesImpl
Set the Namespace URI of a specific attribute.
setUsingNamespaces(boolean) - Method in class gnu.xml.pipeline.DomConsumer
Controls whether the consumer uses an "XML + Namespaces" style DOM construction.
setValidating(boolean) - Method in class javax.xml.parsers.SAXParserFactory
 
setValidating(boolean) - Method in class javax.xml.parsers.DocumentBuilderFactory
 
setValue(int, String) - Method in class org.xml.sax.helpers.AttributesImpl
Set the value of a specific attribute.
setValue(String) - Method in class gnu.xml.dom.DomAttr
DOM L1 Assigns the value of the attribute; it will have one child, which is a text node with the specified value (same as setNodeValue).
setValue(String) - Method in interface org.w3c.dom.Attr
 
setWriter(Writer, String) - Method in class gnu.xml.util.XMLWriter
Resets the handler to write a new text document.
setXhtml(boolean) - Method in class gnu.xml.util.XMLWriter
Controls whether the output should attempt to follow the "transitional" XHTML rules so that it meets the "HTML Compatibility Guidelines" appendix in the XHTML specification.
skippedEntity(String) - Method in class gnu.xml.pipeline.EventFilter
SAX2: passes this callback to the next consumer, if any
skippedEntity(String) - Method in class gnu.xml.pipeline.TeeConsumer
 
skippedEntity(String) - Method in class gnu.xml.pipeline.DomConsumer.Handler
 
skippedEntity(String) - Method in class gnu.xml.pipeline.ValidationConsumer
ContentHandler Reports a fatal exception.
skippedEntity(String) - Method in class gnu.xml.util.XMLWriter
SAX1: indicates a non-expanded entity reference
skippedEntity(String) - Method in interface org.xml.sax.ContentHandler
Receive notification of a skipped entity.
skippedEntity(String) - Method in class org.xml.sax.helpers.DefaultHandler
Receive notification of a skipped entity.
skippedEntity(String) - Method in class org.xml.sax.helpers.XMLReaderAdapter
Adapt a SAX2 skipped entity event.
skippedEntity(String) - Method in class org.xml.sax.helpers.XMLFilterImpl
Filter a skipped entity event.
splitText(int) - Method in class gnu.xml.dom.DomText
DOM L1 Splits this text node in two parts at the offset, returning the new text node (the sibling with the second part).
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.
startCDATA() - Method in class gnu.xml.pipeline.EventFilter
SAX2: passes this callback to the next consumer, if any
startCDATA() - Method in class gnu.xml.pipeline.TeeConsumer
 
startCDATA() - Method in class gnu.xml.pipeline.DomConsumer.Handler
 
startCDATA() - Method in class gnu.xml.pipeline.WellFormednessFilter
 
startCDATA() - Method in class gnu.xml.util.XMLWriter
SAX2: called before parsing CDATA characters
startCDATA() - Method in class gnu.xml.util.DefaultHandler
SAX2: called before parsing CDATA characters
startCDATA() - Method in interface org.xml.sax.ext.LexicalHandler
Report the start of a CDATA section.
startDocument() - Method in class gnu.xml.pipeline.EventFilter
SAX2: passes this callback to the next consumer, if any
startDocument() - Method in class gnu.xml.pipeline.LinkFilter
Reports an error if no Locator has been made available.
startDocument() - Method in class gnu.xml.pipeline.NSFilter
 
startDocument() - Method in class gnu.xml.pipeline.TeeConsumer
 
startDocument() - Method in class gnu.xml.pipeline.DomConsumer.Handler
 
startDocument() - Method in class gnu.xml.pipeline.ValidationConsumer
ContentHandler Ensures that state from any previous parse has been deleted.
startDocument() - Method in class gnu.xml.pipeline.WellFormednessFilter
 
startDocument() - Method in class gnu.xml.util.XMLWriter
SAX1: indicates the beginning of a document parse.
startDocument() - Method in interface org.xml.sax.ContentHandler
Receive notification of the beginning of a document.
startDocument() - Method in class org.xml.sax.HandlerBase
Deprecated. Receive notification of the beginning of the document.
startDocument() - Method in interface org.xml.sax.DocumentHandler
Deprecated. Receive notification of the beginning of a document.
startDocument() - Method in class org.xml.sax.helpers.DefaultHandler
Receive notification of the beginning of the document.
startDocument() - Method in class org.xml.sax.helpers.XMLReaderAdapter
Start document event.
startDocument() - Method in class org.xml.sax.helpers.XMLFilterImpl
Filter a start document event.
startDocument() - Method in class org.xml.sax.helpers.ParserAdapter
Adapt a SAX1 start document event.
startDTD(String, String, String) - Method in class gnu.xml.pipeline.EventFilter
SAX2: passes this callback to the next consumer, if any
startDTD(String, String, String) - Method in class gnu.xml.pipeline.TeeConsumer
 
startDTD(String, String, String) - Method in class gnu.xml.pipeline.DomConsumer.Handler
 
startDTD(String, String, String) - Method in class gnu.xml.pipeline.ValidationConsumer
LexicalHandler Records the declaration of the root element, so it can be verified later.
startDTD(String, String, String) - Method in class gnu.xml.pipeline.WellFormednessFilter
 
startDTD(String, String, String) - Method in class gnu.xml.util.XMLWriter
SAX2: called when the doctype is partially parsed Note that this, like other doctype related calls, is ignored when XHTML is in use.
startDTD(String, String, String) - Method in class gnu.xml.util.DefaultHandler
SAX2: called when the doctype is partially parsed
startDTD(String, String, String) - Method in interface org.xml.sax.ext.LexicalHandler
Report the start of DTD declarations, if any.
startElement(String, AttributeList) - Method in class org.xml.sax.HandlerBase
Deprecated. Receive notification of the start of an element.
startElement(String, AttributeList) - Method in interface org.xml.sax.DocumentHandler
Deprecated. Receive notification of the beginning of an element.
startElement(String, AttributeList) - Method in class org.xml.sax.helpers.ParserAdapter
Adapt a SAX1 startElement event.
startElement(String, String, String, Attributes) - Method in class gnu.xml.pipeline.EventFilter
SAX2: passes this callback to the next consumer, if any
startElement(String, String, String, Attributes) - Method in class gnu.xml.pipeline.LinkFilter
Collects URIs for (X)HTML content from elements which hold them.
startElement(String, String, String, Attributes) - Method in class gnu.xml.pipeline.NSFilter
 
startElement(String, String, String, Attributes) - Method in class gnu.xml.pipeline.TeeConsumer
 
startElement(String, String, String, Attributes) - Method in class gnu.xml.pipeline.DomConsumer.Handler
 
startElement(String, String, String, Attributes) - Method in class gnu.xml.pipeline.ValidationConsumer
ContentHandler Performs validity checks against element (and document) content models, and attribute values.
startElement(String, String, String, Attributes) - Method in class gnu.xml.pipeline.WellFormednessFilter
 
startElement(String, String, String, Attributes) - Method in class gnu.xml.util.XMLWriter
SAX2: indicates the start of an element.
startElement(String, String, String, Attributes) - Method in interface org.xml.sax.ContentHandler
Receive notification of the beginning of an element.
startElement(String, String, String, Attributes) - Method in class org.xml.sax.helpers.DefaultHandler
Receive notification of the start of an element.
startElement(String, String, String, Attributes) - Method in class org.xml.sax.helpers.XMLReaderAdapter
Adapt a SAX2 start element event.
startElement(String, String, String, Attributes) - Method in class org.xml.sax.helpers.XMLFilterImpl
Filter a start element event.
startEntity(String) - Method in class gnu.xml.pipeline.EventFilter
SAX2: passes this callback to the next consumer, if any.
startEntity(String) - Method in class gnu.xml.pipeline.TeeConsumer
 
startEntity(String) - Method in class gnu.xml.pipeline.DomConsumer.Handler
 
startEntity(String) - Method in class gnu.xml.util.XMLWriter
SAX2: called before parsing a general entity in content
startEntity(String) - Method in class gnu.xml.util.DefaultHandler
SAX2: called before parsing a general entity in content
startEntity(String) - Method in interface org.xml.sax.ext.LexicalHandler
Report the beginning of some internal and external XML entities.
startPrefixMapping(String, String) - Method in class gnu.xml.pipeline.EventFilter
SAX2: passes this callback to the next consumer, if any
startPrefixMapping(String, String) - Method in class gnu.xml.pipeline.NSFilter
This call is not passed to the next consumer in the chain.
startPrefixMapping(String, String) - Method in class gnu.xml.pipeline.TeeConsumer
 
startPrefixMapping(String, String) - Method in class gnu.xml.pipeline.DomConsumer.Handler
 
startPrefixMapping(String, String) - Method in class gnu.xml.util.XMLWriter
SAX2: ignored.
startPrefixMapping(String, String) - Method in interface org.xml.sax.ContentHandler
Begin the scope of a prefix-URI Namespace mapping.
startPrefixMapping(String, String) - Method in class org.xml.sax.helpers.DefaultHandler
Receive notification of the start of a Namespace mapping.
startPrefixMapping(String, String) - Method in class org.xml.sax.helpers.XMLReaderAdapter
Adapt a SAX2 start prefix mapping event.
startPrefixMapping(String, String) - Method in class org.xml.sax.helpers.XMLFilterImpl
Filter a start Namespace prefix mapping event.
stopPropagation() - Method in class gnu.xml.dom.DomEvent
Requests the event no longer be captured or bubbled; only listeners on the event target will see the event, if they haven't yet been notified.
substringData(int, int) - Method in class gnu.xml.dom.DomCharacterData
DOM L1 Returns the specified substring.
substringData(int, int) - Method in interface org.w3c.dom.CharacterData
Extracts a range of data from the node.
supports(String, String) - Method in class gnu.xml.dom.DomDoctype
DOM L2 Consults the DOM implementation to determine if the requested feature is supported.
SYNTAX_ERR - Static variable in class org.w3c.dom.DOMException
If an invalid or illegal string is specified.

T

TeeConsumer - class gnu.xml.pipeline.TeeConsumer.
Fans its events out to two other consumers, a "tee" filter stage in an event pipeline.
TeeConsumer(EventConsumer, EventConsumer) - Constructor for class gnu.xml.pipeline.TeeConsumer
Constructs a consumer which sends all its events to the first consumer, and then the second one.
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.
TextConsumer - class gnu.xml.pipeline.TextConsumer.
Terminates a pipeline, consuming events to print them as well formed XML (or XHTML) text.
TextConsumer(OutputStream) - Constructor for class gnu.xml.pipeline.TextConsumer
Constructs a consumer that writes its input as XML text, encoded in UTF-8.
TextConsumer(Writer) - Constructor for class gnu.xml.pipeline.TextConsumer
Constructs a consumer that writes its input as XML text.
TextConsumer(Writer, boolean) - Constructor for class gnu.xml.pipeline.TextConsumer
Constructs an event consumer which echoes its input as text, optionally adhering to some basic XHTML formatting options which increase interoperability with old (v3) browsers.
toString() - Method in class gnu.xml.dom.DomEvent
Returns a basic printable description of the event's type, state, and delivery conditions
toString() - Method in class org.xml.sax.SAXException
Override toString to pick up any embedded exception.
trimToSize() - Method in class gnu.xml.dom.DomNode
Minimize extra space consumed by this node to hold children and event listeners.

U

unparsedEntityDecl(String, String, String, String) - Method in class gnu.xml.pipeline.EventFilter
SAX1: passes this callback to the next consumer, if any
unparsedEntityDecl(String, String, String, String) - Method in class gnu.xml.pipeline.TeeConsumer
 
unparsedEntityDecl(String, String, String, String) - Method in class gnu.xml.pipeline.DomConsumer.Handler
 
unparsedEntityDecl(String, String, String, String) - Method in class gnu.xml.pipeline.ValidationConsumer
DTDHandler Records the entity name, for checking ENTITY and ENTITIES attribute values; records the notation name if it hasn't yet been declared.
unparsedEntityDecl(String, String, String, String) - Method in class gnu.xml.pipeline.WellFormednessFilter
 
unparsedEntityDecl(String, String, String, String) - Method in class gnu.xml.util.XMLWriter
SAX1: called on unparsed entity declarations
unparsedEntityDecl(String, String, String, String) - Method in interface org.xml.sax.DTDHandler
Receive notification of an unparsed entity declaration event.
unparsedEntityDecl(String, String, String, String) - Method in class org.xml.sax.HandlerBase
Deprecated. Receive notification of an unparsed entity declaration.
unparsedEntityDecl(String, String, String, String) - Method in class org.xml.sax.helpers.DefaultHandler
Receive notification of an unparsed entity declaration.
unparsedEntityDecl(String, String, String, String) - Method in class org.xml.sax.helpers.XMLFilterImpl
Filter an unparsed entity declaration event.

V

ValidationConsumer - class gnu.xml.pipeline.ValidationConsumer.
This class checks SAX2 events to report validity errors; it works as both a filter and a terminus on an event pipeline.
ValidationConsumer() - Constructor for class gnu.xml.pipeline.ValidationConsumer
Creates a pipeline terminus which consumes all events passed to it; this will report validity errors as if they were fatal errors, unless an error handler is assigned.
ValidationConsumer(EventConsumer) - Constructor for class gnu.xml.pipeline.ValidationConsumer
Creates a pipeline filter which reports validity errors and then passes events on to the next consumer if they were not fatal.
ValidationConsumer(String, String, String, String, EntityResolver, String) - Constructor for class gnu.xml.pipeline.ValidationConsumer
Creates a validation consumer which is preloaded with the DTD provided.
verifyXmlName(String) - Static method in class gnu.xml.dom.DomDocument
Throws a DOM exception if the specified name is not a legal XML 1.0 name.

W

warning(SAXParseException) - Method in interface org.xml.sax.ErrorHandler
Receive notification of a warning.
warning(SAXParseException) - Method in class org.xml.sax.HandlerBase
Deprecated. Receive notification of a parser warning.
warning(SAXParseException) - Method in class org.xml.sax.helpers.DefaultHandler
Receive notification of a parser warning.
warning(SAXParseException) - Method in class org.xml.sax.helpers.XMLFilterImpl
Filter a warning event.
WellFormednessFilter - class gnu.xml.pipeline.WellFormednessFilter.
This filter reports fatal exceptions in the case of event streams that are not well formed.
WellFormednessFilter() - Constructor for class gnu.xml.pipeline.WellFormednessFilter
Swallows all events after performing well formedness checks.
WellFormednessFilter(EventConsumer) - Constructor for class gnu.xml.pipeline.WellFormednessFilter
Passes events through to the specified consumer, after first processing them.
write(String) - Method in class gnu.xml.util.XMLWriter
Writes the string as if characters() had been called on the contents of the string.
writeElement(String, String, String, Attributes, int) - Method in class gnu.xml.util.XMLWriter
Writes an element that has content consisting of a single integer, encoded as a decimal string.
writeElement(String, String, String, Attributes, String) - Method in class gnu.xml.util.XMLWriter
Writes an element that has content consisting of a single string.
writeEmptyElement(String, String, String, Attributes) - Method in class gnu.xml.util.XMLWriter
Writes an empty element.
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)

X

XHTMLWriter - class gnu.xml.util.XHTMLWriter.
This extends XMLWriter to create a class which defaults to writing XHTML text, preferring the US-ASCII encoding.
XHTMLWriter() - Constructor for class gnu.xml.util.XHTMLWriter
Constructs this handler with System.out used to write SAX events using the US-ASCII encoding, as XHTML.
XHTMLWriter(OutputStream) - Constructor for class gnu.xml.util.XHTMLWriter
Constructs this handler such that the specified output stream is used to write SAX events in the US-ASCII encoding, as XHTML.
XHTMLWriter(Writer) - Constructor for class gnu.xml.util.XHTMLWriter
Constructs this handler such that the specified output stream is used to write SAX events as XHTML.
XHTMLWriter(Writer, String) - Constructor for class gnu.xml.util.XHTMLWriter
Constructs this handler such that the specified output stream is used to write SAX events as XHTML, labeled with the specified encoding.
XMLFilter - interface org.xml.sax.XMLFilter.
Interface for an XML filter.
XMLFilterImpl - class org.xml.sax.helpers.XMLFilterImpl.
Base class for deriving an XML filter.
XMLFilterImpl() - Constructor for class org.xml.sax.helpers.XMLFilterImpl
Construct an empty XML filter, with no parent.
XMLFilterImpl(XMLReader) - Constructor for class org.xml.sax.helpers.XMLFilterImpl
Construct an XML filter with the specified parent.
XMLNS - Static variable in class org.xml.sax.helpers.NamespaceSupport
The XML Namespace as a constant.
XmlReader - class gnu.xml.aelfred2.XmlReader.
This SAX2 parser optionally layers a validator over the Ælfred2 SAX2 parser.
XMLReader - interface org.xml.sax.XMLReader.
SAX2 Interface for reading an XML document using callbacks.
XmlReader() - Constructor for class gnu.xml.aelfred2.XmlReader
Constructs a SAX Parser.
XmlReader(boolean) - Constructor for class gnu.xml.aelfred2.XmlReader
Constructs a SAX Parser, optionally treating validity errors as if they were fatal errors.
XMLReaderAdapter - class org.xml.sax.helpers.XMLReaderAdapter.
Adapt a SAX2 XMLReader as a SAX1 Parser.
XMLReaderAdapter() - Constructor for class org.xml.sax.helpers.XMLReaderAdapter
Create a new adapter.
XMLReaderAdapter(XMLReader) - Constructor for class org.xml.sax.helpers.XMLReaderAdapter
Create a new adapter.
XMLReaderFactory - class org.xml.sax.helpers.XMLReaderFactory.
Factory for creating an XML reader.
XMLWriter - class gnu.xml.util.XMLWriter.
This class is a SAX handler which writes all its input as a well formed XML or XHTML document.
XMLWriter() - Constructor for class gnu.xml.util.XMLWriter
Constructs this handler with System.out used to write SAX events using the UTF-8 encoding.
XMLWriter(OutputStream) - Constructor for class gnu.xml.util.XMLWriter
Constructs a handler which writes all input to the output stream in the UTF-8 encoding, and closes it when endDocument is called.
XMLWriter(Writer) - Constructor for class gnu.xml.util.XMLWriter
Constructs a handler which writes all input to the writer, and then closes the writer when the document ends.
XMLWriter(Writer, String) - Constructor for class gnu.xml.util.XMLWriter
Constructs a handler which writes all input to the writer, and then closes the writer when the document ends.

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

Source code is GPL'd in the JAXP subproject at http://savannah.gnu.org/projects/classpathx
This documentation was derived from that source code on 2001-07-12.