| 
 | JavaTM 2 Platform Std. Ed. v1.4.2 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
| Packages that use Node | |
| javax.imageio.metadata | A package of the Java Image I/O API dealing with reading and writing metadata. | 
| javax.xml.transform.dom | This package implements DOM-specific transformation APIs. | 
| org.w3c.dom | Provides the interfaces for the Document Object Model (DOM) which is a component API of the Java API for XML Processing. | 
| Uses of Node in javax.imageio.metadata | 
| Classes in javax.imageio.metadata that implement Node | |
|  class | IIOMetadataNodeA class representing a node in a meta-data tree, which implements the org.w3c.dom.Elementinterface and additionally allows
 for the storage of non-textual objects via thegetUserObjectandsetUserObjectmethods. | 
| Fields in javax.imageio.metadata declared as Node | |
| protected  Node | IIOInvalidTreeException.offendingNodeThe Nodethat led to the parsing error, ornull. | 
| Methods in javax.imageio.metadata that return Node | |
|  Node | IIOMetadataNode.getParentNode()Returns the parent of this node. | 
|  Node | IIOMetadataNode.getFirstChild()Returns the first child of this node, or nullif
 the node has no children. | 
|  Node | IIOMetadataNode.getLastChild()Returns the last child of this node, or nullif
 the node has no children. | 
|  Node | IIOMetadataNode.getPreviousSibling()Returns the previous sibling of this node, or nullif this node has no previous sibling. | 
|  Node | IIOMetadataNode.getNextSibling()Returns the next sibling of this node, or nullif
 the node has no next sibling. | 
|  Node | IIOMetadataNode.insertBefore(Node newChild,
             Node refChild)Inserts the node newChildbefore the existing
 child noderefChild. | 
|  Node | IIOMetadataNode.replaceChild(Node newChild,
             Node oldChild)Replaces the child node oldChildwithnewChildin the list of children, and returns theoldChildnode. | 
|  Node | IIOMetadataNode.removeChild(Node oldChild)Removes the child node indicated by oldChildfrom
 the list of children, and returns it. | 
|  Node | IIOMetadataNode.appendChild(Node newChild)Adds the node newChildto the end of the list of
 children of this node. | 
|  Node | IIOMetadataNode.cloneNode(boolean deep)Returns a duplicate of this node. | 
|  Node | IIOMetadataNode.item(int index) | 
|  Node | IIOInvalidTreeException.getOffendingNode()Returns the Nodethat caused the error in parsing. | 
| abstract  Node | IIOMetadata.getAsTree(String formatName)Returns an XML DOM Nodeobject that represents the
 root of a tree of metadata contained within this object
 according to the conventions defined by a given metadata
 format. | 
| Methods in javax.imageio.metadata with parameters of type Node | |
|  Node | IIOMetadataNode.insertBefore(Node newChild,
             Node refChild)Inserts the node newChildbefore the existing
 child noderefChild. | 
|  Node | IIOMetadataNode.replaceChild(Node newChild,
             Node oldChild)Replaces the child node oldChildwithnewChildin the list of children, and returns theoldChildnode. | 
|  Node | IIOMetadataNode.removeChild(Node oldChild)Removes the child node indicated by oldChildfrom
 the list of children, and returns it. | 
|  Node | IIOMetadataNode.appendChild(Node newChild)Adds the node newChildto the end of the list of
 children of this node. | 
| abstract  void | IIOMetadata.mergeTree(String formatName,
          Node root)Alters the internal state of this IIOMetadataobject from a tree of XML DOMNodes whose syntax
 is defined by the given metadata format. | 
|  void | IIOMetadata.setFromTree(String formatName,
            Node root)Sets the internal state of this IIOMetadataobject
 from a tree of XML DOMNodes whose syntax is
 defined by the given metadata format. | 
| Constructors in javax.imageio.metadata with parameters of type Node | |
| IIOInvalidTreeException(String message,
                        Node offendingNode)Constructs an IIOInvalidTreeExceptionwith a
 message string and a reference to theNodethat
 caused the parsing error. | |
| IIOInvalidTreeException(String message,
                        Throwable cause,
                        Node offendingNode)Constructs an IIOInvalidTreeExceptionwith a
 message string, a reference to an exception that caused this
 exception, and a reference to theNodethat caused
 the parsing error. | |
| Uses of Node in javax.xml.transform.dom | 
| Methods in javax.xml.transform.dom that return Node | |
|  Node | DOMSource.getNode()Get the node that represents a Source DOM tree. | 
|  Node | DOMResult.getNode()Get the node that will contain the result DOM tree. | 
|  Node | DOMLocator.getOriginatingNode()Return the node where the event occurred. | 
| Methods in javax.xml.transform.dom with parameters of type Node | |
|  void | DOMSource.setNode(Node node)Set the node that will represents a Source DOM tree. | 
|  void | DOMResult.setNode(Node node)Set the node that will contain the result DOM tree. | 
| Constructors in javax.xml.transform.dom with parameters of type Node | |
| DOMSource(Node n)Create a new input source with a DOM node. | |
| DOMSource(Node node,
          String systemID)Create a new input source with a DOM node, and with the system ID also passed in as the base URI. | |
| DOMResult(Node node)Use a DOM node to create a new output target. | |
| DOMResult(Node node,
          String systemID)Create a new output target with a DOM node. | |
| Uses of Node in org.w3c.dom | 
| Subinterfaces of Node in org.w3c.dom | |
|  interface | AttrThe Attrinterface represents an attribute in anElementobject. | 
|  interface | CDATASectionCDATA sections are used to escape blocks of text containing characters that would otherwise be regarded as markup. | 
|  interface | CharacterDataThe CharacterDatainterface extends Node with a set of 
 attributes and methods for accessing character data in the DOM. | 
|  interface | CommentThis interface inherits from CharacterDataand represents the 
 content of a comment, i.e., all the characters between the starting '<!--' and ending '-->'. | 
|  interface | DocumentThe Documentinterface represents the entire HTML or XML 
 document. | 
|  interface | DocumentFragmentDocumentFragmentis a "lightweight" or "minimal"Documentobject. | 
|  interface | DocumentTypeEach Documenthas adoctypeattribute whose value 
 is eithernullor aDocumentTypeobject. | 
|  interface | ElementThe Elementinterface represents an element in an HTML or XML 
 document. | 
|  interface | EntityThis interface represents an entity, either parsed or unparsed, in an XML document. | 
|  interface | EntityReferenceEntityReferenceobjects 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. | 
|  interface | NotationThis interface represents a notation declared in the DTD. | 
|  interface | ProcessingInstructionThe ProcessingInstructioninterface represents a "processing 
 instruction", used in XML as a way to keep processor-specific information 
 in the text of the document. | 
|  interface | TextThe Textinterface inherits fromCharacterDataand represents the textual content (termed character data in XML) of anElementorAttr. | 
| Methods in org.w3c.dom that return Node | |
|  Node | Document.importNode(Node importedNode,
           boolean deep)Imports a node from another document to this document. | 
|  Node | NamedNodeMap.getNamedItem(String name)Retrieves a node specified by name. | 
|  Node | NamedNodeMap.setNamedItem(Node arg)Adds a node using its nodeNameattribute. | 
|  Node | NamedNodeMap.removeNamedItem(String name)Removes a node specified by name. | 
|  Node | NamedNodeMap.item(int index)Returns the indexth item in the map. | 
|  Node | NamedNodeMap.getNamedItemNS(String namespaceURI,
               String localName)Retrieves a node specified by local name and namespace URI. | 
|  Node | NamedNodeMap.setNamedItemNS(Node arg)Adds a node using its namespaceURIandlocalName. | 
|  Node | NamedNodeMap.removeNamedItemNS(String namespaceURI,
                  String localName)Removes a node specified by local name and namespace URI. | 
|  Node | NodeList.item(int index)Returns the indexth item in the collection. | 
|  Node | Node.getParentNode()The parent of this node. | 
|  Node | Node.getFirstChild()The first child of this node. | 
|  Node | Node.getLastChild()The last child of this node. | 
|  Node | Node.getPreviousSibling()The node immediately preceding this node. | 
|  Node | Node.getNextSibling()The node immediately following this node. | 
|  Node | Node.insertBefore(Node newChild,
             Node refChild)Inserts the node newChildbefore the existing child noderefChild. | 
|  Node | Node.replaceChild(Node newChild,
             Node oldChild)Replaces the child node oldChildwithnewChildin the list of children, and returns theoldChildnode. | 
|  Node | Node.removeChild(Node oldChild)Removes the child node indicated by oldChildfrom the list 
 of children, and returns it. | 
|  Node | Node.appendChild(Node newChild)Adds the node newChildto the end of the list of children 
 of this node. | 
|  Node | Node.cloneNode(boolean deep)Returns a duplicate of this node, i.e., serves as a generic copy constructor for nodes. | 
| Methods in org.w3c.dom with parameters of type Node | |
|  Node | Document.importNode(Node importedNode,
           boolean deep)Imports a node from another document to this document. | 
|  Node | NamedNodeMap.setNamedItem(Node arg)Adds a node using its nodeNameattribute. | 
|  Node | NamedNodeMap.setNamedItemNS(Node arg)Adds a node using its namespaceURIandlocalName. | 
|  Node | Node.insertBefore(Node newChild,
             Node refChild)Inserts the node newChildbefore the existing child noderefChild. | 
|  Node | Node.replaceChild(Node newChild,
             Node oldChild)Replaces the child node oldChildwithnewChildin the list of children, and returns theoldChildnode. | 
|  Node | Node.removeChild(Node oldChild)Removes the child node indicated by oldChildfrom the list 
 of children, and returns it. | 
|  Node | Node.appendChild(Node newChild)Adds the node newChildto the end of the list of children 
 of this node. | 
| 
 | JavaTM 2 Platform Std. Ed. v1.4.2 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
Copyright 2003 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.