Java Doc for TreeWalkerImpl.java in  » Web-Server » Rimfaxe-Web-Server » org » apache » xerces » dom » 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 » Web Server » Rimfaxe Web Server » org.apache.xerces.dom 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.xerces.dom.TreeWalkerImpl

TreeWalkerImpl
public class TreeWalkerImpl implements TreeWalker(Code)
This class implements the TreeWalker interface.


Field Summary
 NodefCurrentNode
     The current Node.
 NodeFilterfNodeFilter
     The NodeFilter reference.
 NodefRoot
     The root Node.
 intfWhatToShow
     The whatToShow mask.

Constructor Summary
public  TreeWalkerImpl(Node root, int whatToShow, NodeFilter nodeFilter, boolean entityReferenceExpansion)
    

Method Summary
 shortacceptNode(Node node)
     Internal function.
public  NodefirstChild()
     Return the first child Node from the current node, after applying filter, whatToshow.
public  NodegetCurrentNode()
     Return the current Node.
public  booleangetExpandEntityReferences()
     Return whether children entity references are included in the iterator.
public  NodeFiltergetFilter()
    
 NodegetFirstChild(Node node)
     Internal function.
 NodegetLastChild(Node node)
     Internal function.
 NodegetNextSibling(Node node)
     Internal function.
 NodegetNextSibling(Node node, Node root)
     Internal function. Return the nextSibling Node, from the input node after applying filter, whatToshow. NEVER TRAVERSES ABOVE THE SPECIFIED ROOT NODE.
 NodegetParentNode(Node node)
     Internal function.
 NodegetPreviousSibling(Node node)
     Internal function.
 NodegetPreviousSibling(Node node, Node root)
     Internal function. Return the previousSibling Node, from the input node after applying filter, whatToshow. NEVER TRAVERSES ABOVE THE SPECIFIED ROOT NODE.
public  NodegetRoot()
    
public  intgetWhatToShow()
    
public  NodelastChild()
     Return the last child Node from the current node, after applying filter, whatToshow.
public  NodenextNode()
     Return the next Node from the current node, after applying filter, whatToshow.
public  NodenextSibling()
     Return the next sibling Node from the current node, after applying filter, whatToshow.
public  NodeparentNode()
     Return the parent Node from the current node, after applying filter, whatToshow.
public  NodepreviousNode()
     Return the previous Node from the current node, after applying filter, whatToshow.
public  NodepreviousSibling()
     Return the previous sibling Node from the current node, after applying filter, whatToshow.
public  voidsetCurrentNode(Node node)
     Return the current Node.
public  voidsetWhatShow(int whatToShow)
    

Field Detail
fCurrentNode
Node fCurrentNode(Code)
The current Node.



fNodeFilter
NodeFilter fNodeFilter(Code)
The NodeFilter reference.



fRoot
Node fRoot(Code)
The root Node.



fWhatToShow
int fWhatToShow(Code)
The whatToShow mask.




Constructor Detail
TreeWalkerImpl
public TreeWalkerImpl(Node root, int whatToShow, NodeFilter nodeFilter, boolean entityReferenceExpansion)(Code)
Public constructor




Method Detail
acceptNode
short acceptNode(Node node)(Code)
Internal function. The node whatToShow and the filter are combined into one result.



firstChild
public Node firstChild()(Code)
Return the first child Node from the current node, after applying filter, whatToshow. If result is not null, set the current Node.



getCurrentNode
public Node getCurrentNode()(Code)
Return the current Node.



getExpandEntityReferences
public boolean getExpandEntityReferences()(Code)
Return whether children entity references are included in the iterator.



getFilter
public NodeFilter getFilter()(Code)
Return the NodeFilter



getFirstChild
Node getFirstChild(Node node)(Code)
Internal function. Return the first child Node, from the input node after applying filter, whatToshow. The current node is not consulted or set.



getLastChild
Node getLastChild(Node node)(Code)
Internal function. Return the last child Node, from the input node after applying filter, whatToshow. The current node is not consulted or set.



getNextSibling
Node getNextSibling(Node node)(Code)
Internal function. Return the nextSibling Node, from the input node after applying filter, whatToshow. The current node is not consulted or set.



getNextSibling
Node getNextSibling(Node node, Node root)(Code)
Internal function. Return the nextSibling Node, from the input node after applying filter, whatToshow. NEVER TRAVERSES ABOVE THE SPECIFIED ROOT NODE. The current node is not consulted or set.



getParentNode
Node getParentNode(Node node)(Code)
Internal function. Return the parent Node, from the input node after applying filter, whatToshow. The current node is not consulted or set.



getPreviousSibling
Node getPreviousSibling(Node node)(Code)
Internal function. Return the previous sibling Node, from the input node after applying filter, whatToshow. The current node is not consulted or set.



getPreviousSibling
Node getPreviousSibling(Node node, Node root)(Code)
Internal function. Return the previousSibling Node, from the input node after applying filter, whatToshow. NEVER TRAVERSES ABOVE THE SPECIFIED ROOT NODE. The current node is not consulted or set.



getRoot
public Node getRoot()(Code)



getWhatToShow
public int getWhatToShow()(Code)
Return the whatToShow value



lastChild
public Node lastChild()(Code)
Return the last child Node from the current node, after applying filter, whatToshow. If result is not null, set the current Node.



nextNode
public Node nextNode()(Code)
Return the next Node from the current node, after applying filter, whatToshow. If result is not null, set the current Node.



nextSibling
public Node nextSibling()(Code)
Return the next sibling Node from the current node, after applying filter, whatToshow. If result is not null, set the current Node.



parentNode
public Node parentNode()(Code)
Return the parent Node from the current node, after applying filter, whatToshow. If result is not null, set the current Node.



previousNode
public Node previousNode()(Code)
Return the previous Node from the current node, after applying filter, whatToshow. If result is not null, set the current Node.



previousSibling
public Node previousSibling()(Code)
Return the previous sibling Node from the current node, after applying filter, whatToshow. If result is not null, set the current Node.



setCurrentNode
public void setCurrentNode(Node node)(Code)
Return the current Node.



setWhatShow
public void setWhatShow(int whatToShow)(Code)



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

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