Uses of Interface
org.w3c.dom.NodeList

Packages that use NodeList
org.apache.html.dom   
org.apache.xerces.dom   
org.w3c.dom   
org.w3c.dom.html   
 

Uses of NodeList in org.apache.html.dom
 

Classes in org.apache.html.dom that implement NodeList
 class HTMLAnchorElementImpl
           
 class HTMLAppletElementImpl
           
 class HTMLAreaElementImpl
           
 class HTMLBaseElementImpl
           
 class HTMLBaseFontElementImpl
           
 class HTMLBodyElementImpl
           
 class HTMLBRElementImpl
           
 class HTMLButtonElementImpl
           
 class HTMLDirectoryElementImpl
           
 class HTMLDivElementImpl
           
 class HTMLDListElementImpl
           
 class HTMLDocumentImpl
          Implements an HTML document.
 class HTMLElementImpl
          Implements an HTML-specific element, an Element that will only appear inside HTML documents.
 class HTMLFieldSetElementImpl
           
 class HTMLFontElementImpl
           
 class HTMLFormElementImpl
           
 class HTMLFrameElementImpl
           
 class HTMLFrameSetElementImpl
           
 class HTMLHeadElementImpl
           
 class HTMLHeadingElementImpl
           
 class HTMLHRElementImpl
           
 class HTMLHtmlElementImpl
           
 class HTMLIFrameElementImpl
           
 class HTMLImageElementImpl
           
 class HTMLInputElementImpl
           
 class HTMLIsIndexElementImpl
           
 class HTMLLabelElementImpl
           
 class HTMLLegendElementImpl
           
 class HTMLLIElementImpl
           
 class HTMLLinkElementImpl
           
 class HTMLMapElementImpl
           
 class HTMLMenuElementImpl
           
 class HTMLMetaElementImpl
           
 class HTMLModElementImpl
           
 class HTMLObjectElementImpl
           
 class HTMLOListElementImpl
           
 class HTMLOptGroupElementImpl
           
 class HTMLOptionElementImpl
           
 class HTMLParagraphElementImpl
           
 class HTMLParamElementImpl
           
 class HTMLPreElementImpl
           
 class HTMLQuoteElementImpl
           
 class HTMLScriptElementImpl
           
 class HTMLSelectElementImpl
           
 class HTMLStyleElementImpl
           
 class HTMLTableCaptionElementImpl
           
 class HTMLTableCellElementImpl
           
 class HTMLTableColElementImpl
           
 class HTMLTableElementImpl
           
 class HTMLTableRowElementImpl
           
 class HTMLTableSectionElementImpl
           
 class HTMLTextAreaElementImpl
           
 class HTMLTitleElementImpl
           
 class HTMLUListElementImpl
           
 class NameNodeListImpl
          This class implements the DOM's NodeList behavior for HTMLDocuemnt.getElementsByName().
 

Methods in org.apache.html.dom that return NodeList
 NodeList HTMLElementImpl.getElementsByTagName(java.lang.String tagName)
           
 NodeList HTMLElementImpl.getElementsByTagNameNS(java.lang.String namespaceURI, java.lang.String localName)
           
 NodeList HTMLDocumentImpl.getElementsByName(java.lang.String elementName)
           
 NodeList HTMLDocumentImpl.getElementsByTagName(java.lang.String tagName)
           
 NodeList HTMLDocumentImpl.getElementsByTagNameNS(java.lang.String namespaceURI, java.lang.String localName)
           
 

Uses of NodeList in org.apache.xerces.dom
 

Classes in org.apache.xerces.dom that implement NodeList
 class AttrImpl
          Attribute represents an XML-style attribute of an Element.
 class AttrNSImpl
          AttrNSImpl inherits from AttrImpl and adds namespace support.
 class CDATASectionImpl
          XML provides the CDATA markup to allow a region of text in which most of the XML delimiter recognition does not take place.
 class CharacterDataImpl
          CharacterData is an abstract Node that can carry character data as its Value.
 class CommentImpl
          Represents an XML (or HTML) comment.
 class DeepNodeListImpl
          This class implements the DOM's NodeList behavior for Element.getElementsByTagName()
 class DeferredAttrImpl
          Attribute represents an XML-style attribute of an Element.
 class DeferredAttrNSImpl
          DeferredAttrNSImpl is to AttrNSImpl, what DeferredAttrImpl is to AttrImpl.
 class DeferredCDATASectionImpl
          XML provides the CDATA markup to allow a region of text in which most of the XML delimiter recognition does not take place.
 class DeferredCommentImpl
          Represents an XML (or HTML) comment.
 class DeferredDocumentImpl
          The Document interface represents the entire HTML or XML document.
 class DeferredDocumentTypeImpl
          This class represents a Document Type declaraction in the document itself, not a Document Type Definition (DTD).
 class DeferredElementDefinitionImpl
          NON-DOM CLASS: Describe one of the Elements (and its associated Attributes) defined in this Document Type.
 class DeferredElementImpl
          Elements represent most of the "markup" and structure of the document.
 class DeferredElementNSImpl
          DeferredElementNSImpl is to ElementNSImpl, what DeferredElementImpl is to ElementImpl.
 class DeferredEntityImpl
          Entity nodes hold the reference data for an XML Entity -- either parsed or unparsed.
 class DeferredEntityReferenceImpl
          EntityReference models the XML &entityname; syntax, when used for entities defined by the DOM.
 class DeferredNotationImpl
          Notations are how the Document Type Description (DTD) records hints about the format of an XML "unparsed entity" -- in other words, non-XML data bound to this document type, which some applications may wish to consult when manipulating the document.
 class DeferredProcessingInstructionImpl
          Processing Instructions (PIs) permit documents to carry processor-specific information alongside their actual content.
 class DeferredTextImpl
          Text nodes hold the non-markup, non-Entity content of an Element or Attribute.
 class DocumentFragmentImpl
          DocumentFragment is a "lightweight" or "minimal" Document object.
 class DocumentImpl
          The Document interface represents the entire HTML or XML document.
 class DocumentTypeImpl
          This class represents a Document Type declaraction in the document itself, not a Document Type Definition (DTD).
 class ElementDefinitionImpl
          NON-DOM CLASS: Describe one of the Elements (and its associated Attributes) defined in this Document Type.
 class ElementImpl
          Elements represent most of the "markup" and structure of the document.
 class ElementNSImpl
          ElementNSImpl inherits from ElementImpl and adds namespace support.
 class EntityImpl
          Entity nodes hold the reference data for an XML Entity -- either parsed or unparsed.
 class EntityReferenceImpl
          EntityReference models the XML &entityname; syntax, when used for entities defined by the DOM.
 class NodeContainer
          NodeContainer inherits from NodeImpl and adds the capability of having child nodes.
 class NodeImpl
          Node provides the basic structure of a DOM tree.
 class NotationImpl
          Notations are how the Document Type Description (DTD) records hints about the format of an XML "unparsed entity" -- in other words, non-XML data bound to this document type, which some applications may wish to consult when manipulating the document.
 class ProcessingInstructionImpl
          Processing Instructions (PIs) permit documents to carry processor-specific information alongside their actual content.
 class TextImpl
          Text nodes hold the non-markup, non-Entity content of an Element or Attribute.
 

Methods in org.apache.xerces.dom that return NodeList
 NodeList NodeImpl.getChildNodes()
          Obtain a NodeList enumerating all children of this node.
 NodeList NodeContainer.getChildNodes()
          Obtain a NodeList enumerating all children of this node.
 NodeList CharacterDataImpl.getChildNodes()
          Returns an empty node list.
 NodeList ElementImpl.getElementsByTagName(java.lang.String tagname)
          Returns a NodeList of all descendent nodes (children, grandchildren, and so on) which are Elements and which have the specified tag name.
 NodeList ElementImpl.getElementsByTagNameNS(java.lang.String namespaceURI, java.lang.String localName)
          Introduced in DOM Level 2.
 NodeList DocumentImpl.getElementsByTagName(java.lang.String tagname)
          Return a live collection of all descendent Elements (not just immediate children) having the specified tag name.
 NodeList DocumentImpl.getElementsByTagNameNS(java.lang.String namespaceURI, java.lang.String localName)
          Introduced in DOM Level 2.
 

Uses of NodeList in org.w3c.dom
 

Methods in org.w3c.dom that return NodeList
 NodeList Node.getChildNodes()
          A NodeList that contains all children of this node.
 NodeList Element.getElementsByTagName(java.lang.String name)
          Returns a NodeList of all descendant elements with a given tag name, in the order in which they would be encountered in a preorder traversal of the Element tree.
 NodeList Element.getElementsByTagNameNS(java.lang.String namespaceURI, java.lang.String localName)
          Returns a NodeList of all the Elements with a given local name and namespace URI in the order in which they would be encountered in a preorder traversal of the Document tree, starting from this node.
 NodeList Document.getElementsByTagName(java.lang.String tagname)
          Returns a NodeList of all the Elements with a given tag name in the order in which they would be encountered in a preorder traversal of the Document tree.
 NodeList Document.getElementsByTagNameNS(java.lang.String namespaceURI, java.lang.String localName)
          Returns a NodeList of all the Elements with a given local name and namespace URI in the order in which they would be encountered in a preorder traversal of the Document tree.
 

Uses of NodeList in org.w3c.dom.html
 

Methods in org.w3c.dom.html that return NodeList
 NodeList HTMLDocument.getElementsByName(java.lang.String elementName)
          Returns the (possibly empty) collection of elements whose name value is given by elementName .
 



Copyright © 1999 Apache XML Project. All Rights Reserved.