Java Doc for Node.java in  » Ajax » GWT » com » google » gwt » xml » client » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Ajax » GWT » com.google.gwt.xml.client 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


com.google.gwt.xml.client.Node

All known Subclasses:   com.google.gwt.xml.client.impl.NodeImpl,
Node
public interface Node (Code)
This is the base interface for DOM nodes, as obtained from using XMLParser methods. Methods for iterating over and accessing values from nodes are supplied here.


Field Summary
final public static  shortATTRIBUTE_NODE
     The constant 2 denotes DOM nodes of type Attribute.
final public static  shortCDATA_SECTION_NODE
     The constant 4 denotes DOM nodes of type CdataSection.
final public static  shortCOMMENT_NODE
     The constant 8 denotes DOM nodes of type Comment.
final public static  shortDOCUMENT_FRAGMENT_NODE
     The constant 11 denotes DOM nodes of type DocumentFragment.
final public static  shortDOCUMENT_NODE
     The constant 9 denotes DOM nodes of type Document.
final public static  shortDOCUMENT_TYPE_NODE
     The constant 10 denotes DOM nodes of type DocumentType.
final public static  shortELEMENT_NODE
     The constant 1 denotes DOM nodes of type Element.
final public static  shortENTITY_NODE
     The constant 6 denotes DOM nodes of type Entity.
final public static  shortENTITY_REFERENCE_NODE
     The constant 5 denotes DOM nodes of type EntityReference.
final public static  shortNOTATION_NODE
     The constant 12 denotes DOM nodes of type Notation.
final public static  shortPROCESSING_INSTRUCTION_NODE
     The constant 7 denotes DOM nodes of type ProcessingInstruction.
final public static  shortTEXT_NODE
     The constant 3 denotes DOM nodes of type Text.


Method Summary
public  NodeappendChild(Node newChild)
     This method appends child newChild.
public  NodecloneNode(boolean deep)
     This method copies this Node.
public  NamedNodeMapgetAttributes()
     This method retrieves the attributes.
public  NodeListgetChildNodes()
     This method retrieves the child nodes.
public  NodegetFirstChild()
     This method retrieves the first child.
public  NodegetLastChild()
     This method retrieves the last child.
public  StringgetNamespaceURI()
     This method retrieves the namespace URI.
public  NodegetNextSibling()
     This method retrieves the next sibling.
public  StringgetNodeName()
     This method retrieves the name.
public  shortgetNodeType()
     This method retrieves the type.
public  StringgetNodeValue()
     This method retrieves the value.
public  DocumentgetOwnerDocument()
     This method retrieves the owner document.
public  NodegetParentNode()
     This method retrieves the parent.
public  StringgetPrefix()
     This method retrieves the prefix.
public  NodegetPreviousSibling()
     This method retrieves the previous sibling.
public  booleanhasAttributes()
     This method determines whether this Node has any attributes.
public  booleanhasChildNodes()
     This method determines whether this Node has any child nodes.
public  NodeinsertBefore(Node newChild, Node refChild)
     This method inserts before newChild.
public  voidnormalize()
     This method may collapse adjacent text nodes into one text node, depending on the implementation.
public  NoderemoveChild(Node oldChild)
     This method removes child oldChild.
public  NodereplaceChild(Node newChild, Node oldChild)
     This method replaces the child oldChild with newChild.
public  voidsetNodeValue(String nodeValue)
     This method sets the value to nodeValue.

Field Detail
ATTRIBUTE_NODE
final public static short ATTRIBUTE_NODE(Code)
The constant 2 denotes DOM nodes of type Attribute.



CDATA_SECTION_NODE
final public static short CDATA_SECTION_NODE(Code)
The constant 4 denotes DOM nodes of type CdataSection.



COMMENT_NODE
final public static short COMMENT_NODE(Code)
The constant 8 denotes DOM nodes of type Comment.



DOCUMENT_FRAGMENT_NODE
final public static short DOCUMENT_FRAGMENT_NODE(Code)
The constant 11 denotes DOM nodes of type DocumentFragment.



DOCUMENT_NODE
final public static short DOCUMENT_NODE(Code)
The constant 9 denotes DOM nodes of type Document.



DOCUMENT_TYPE_NODE
final public static short DOCUMENT_TYPE_NODE(Code)
The constant 10 denotes DOM nodes of type DocumentType.



ELEMENT_NODE
final public static short ELEMENT_NODE(Code)
The constant 1 denotes DOM nodes of type Element.



ENTITY_NODE
final public static short ENTITY_NODE(Code)
The constant 6 denotes DOM nodes of type Entity.



ENTITY_REFERENCE_NODE
final public static short ENTITY_REFERENCE_NODE(Code)
The constant 5 denotes DOM nodes of type EntityReference.



NOTATION_NODE
final public static short NOTATION_NODE(Code)
The constant 12 denotes DOM nodes of type Notation.



PROCESSING_INSTRUCTION_NODE
final public static short PROCESSING_INSTRUCTION_NODE(Code)
The constant 7 denotes DOM nodes of type ProcessingInstruction.



TEXT_NODE
final public static short TEXT_NODE(Code)
The constant 3 denotes DOM nodes of type Text.





Method Detail
appendChild
public Node appendChild(Node newChild)(Code)
This method appends child newChild.
Parameters:
  newChild - the Node to be added the child Node appended



cloneNode
public Node cloneNode(boolean deep)(Code)
This method copies this Node.
Parameters:
  deep - whether to recurse to children Node cloned



getAttributes
public NamedNodeMap getAttributes()(Code)
This method retrieves the attributes. the attributes of this Node



getChildNodes
public NodeList getChildNodes()(Code)
This method retrieves the child nodes. the child nodes of this Node



getFirstChild
public Node getFirstChild()(Code)
This method retrieves the first child. the first child of this Node



getLastChild
public Node getLastChild()(Code)
This method retrieves the last child. the last child of this Node



getNamespaceURI
public String getNamespaceURI()(Code)
This method retrieves the namespace URI. the namespace URI of this Node



getNextSibling
public Node getNextSibling()(Code)
This method retrieves the next sibling. the next sibling of this Node



getNodeName
public String getNodeName()(Code)
This method retrieves the name. the name of this Node



getNodeType
public short getNodeType()(Code)
This method retrieves the type. the type of this Node



getNodeValue
public String getNodeValue()(Code)
This method retrieves the value. the value of this Node



getOwnerDocument
public Document getOwnerDocument()(Code)
This method retrieves the owner document. the owner document of this Node



getParentNode
public Node getParentNode()(Code)
This method retrieves the parent. the parent of this Node



getPrefix
public String getPrefix()(Code)
This method retrieves the prefix. the prefix of this Node



getPreviousSibling
public Node getPreviousSibling()(Code)
This method retrieves the previous sibling. the previous sibling of this Node



hasAttributes
public boolean hasAttributes()(Code)
This method determines whether this Node has any attributes. true if this Node has any attributes



hasChildNodes
public boolean hasChildNodes()(Code)
This method determines whether this Node has any child nodes. true if this Node has any child nodes



insertBefore
public Node insertBefore(Node newChild, Node refChild)(Code)
This method inserts before newChild.
Parameters:
  newChild - the Node to be added
Parameters:
  refChild - the Node which determines the position toinsert the before Node inserted



normalize
public void normalize()(Code)
This method may collapse adjacent text nodes into one text node, depending on the implementation.



removeChild
public Node removeChild(Node oldChild)(Code)
This method removes child oldChild.
Parameters:
  oldChild - the Node to be removed the child Node removed



replaceChild
public Node replaceChild(Node newChild, Node oldChild)(Code)
This method replaces the child oldChild with newChild.
Parameters:
  newChild - the Node to be added
Parameters:
  oldChild - the Node to be removed the child Node replaced



setNodeValue
public void setNodeValue(String nodeValue)(Code)
This method sets the value to nodeValue.
Parameters:
  nodeValue - the new value



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.