Java Doc for DTMFilter.java in  » XML » xalan » org » apache » xml » dtm » 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 » XML » xalan » org.apache.xml.dtm 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.apache.xml.dtm.DTMFilter

DTMFilter
public interface DTMFilter (Code)
Simple filter for doing node tests. Note the semantics of this are somewhat different that the DOM's NodeFilter.


Field Summary
final public static  intSHOW_ALL
     Show all Nodes.
final public static  intSHOW_ATTRIBUTE
     Show Attr nodes.
final public static  intSHOW_BYFUNCTION
     Special bit for filters implementing match patterns starting with a function.
final public static  intSHOW_CDATA_SECTION
     Show CDATASection nodes.
final public static  intSHOW_COMMENT
     Show Comment nodes.
final public static  intSHOW_DOCUMENT
     Show Document nodes.
final public static  intSHOW_DOCUMENT_FRAGMENT
     Show DocumentFragment nodes.
final public static  intSHOW_DOCUMENT_TYPE
     Show DocumentType nodes.
final public static  intSHOW_ELEMENT
     Show Element nodes.
final public static  intSHOW_ENTITY
     Show Entity nodes.
final public static  intSHOW_ENTITY_REFERENCE
     Show EntityReference nodes.
final public static  intSHOW_NAMESPACE
     This bit instructs the iterator to show namespace nodes, which are modeled by DTM but not by the DOM.
final public static  intSHOW_NOTATION
     Show Notation nodes.
final public static  intSHOW_PROCESSING_INSTRUCTION
     Show ProcessingInstruction nodes.
final public static  intSHOW_TEXT
     Show Text nodes.


Method Summary
public  shortacceptNode(int nodeHandle, int whatToShow)
     Test whether a specified node is visible in the logical view of a DTMIterator.
public  shortacceptNode(int nodeHandle, int whatToShow, int expandedName)
     Test whether a specified node is visible in the logical view of a DTMIterator.

Field Detail
SHOW_ALL
final public static int SHOW_ALL(Code)
Show all Nodes.



SHOW_ATTRIBUTE
final public static int SHOW_ATTRIBUTE(Code)
Show Attr nodes. This is meaningful only when creating an iterator or tree-walker with an attribute node as its root; in this case, it means that the attribute node will appear in the first position of the iteration or traversal. Since attributes are never children of other nodes, they do not appear when traversing over the main document tree.



SHOW_BYFUNCTION
final public static int SHOW_BYFUNCTION(Code)
Special bit for filters implementing match patterns starting with a function. Make sure this does not conflict with org.w3c.dom.traversal.NodeFilter .

%REVIEW% Might be safer to start from higher bits and work down, to leave room for the DOM to expand its set of constants... Or, possibly, to create a DTM-specific field for these additional bits.




SHOW_CDATA_SECTION
final public static int SHOW_CDATA_SECTION(Code)
Show CDATASection nodes.



SHOW_COMMENT
final public static int SHOW_COMMENT(Code)
Show Comment nodes.



SHOW_DOCUMENT
final public static int SHOW_DOCUMENT(Code)
Show Document nodes. (Of course, as with Attributes and such, this is meaningful only when the iteration root is the Document itself, since Document has no parent.)



SHOW_DOCUMENT_FRAGMENT
final public static int SHOW_DOCUMENT_FRAGMENT(Code)
Show DocumentFragment nodes. (Of course, as with Attributes and such, this is meaningful only when the iteration root is the Document itself, since DocumentFragment has no parent.)



SHOW_DOCUMENT_TYPE
final public static int SHOW_DOCUMENT_TYPE(Code)
Show DocumentType nodes.



SHOW_ELEMENT
final public static int SHOW_ELEMENT(Code)
Show Element nodes.



SHOW_ENTITY
final public static int SHOW_ENTITY(Code)
Show Entity nodes. This is meaningful only when creating an iterator or tree-walker with an Entity node as its root; in this case, it means that the Entity node will appear in the first position of the traversal. Since entities are not part of the document tree, they do not appear when traversing over the main document tree.



SHOW_ENTITY_REFERENCE
final public static int SHOW_ENTITY_REFERENCE(Code)
Show EntityReference nodes. Note that if Entity References have been fully expanded while the tree was being constructed, these nodes will not appear and this mask has no effect.



SHOW_NAMESPACE
final public static int SHOW_NAMESPACE(Code)
This bit instructs the iterator to show namespace nodes, which are modeled by DTM but not by the DOM. Make sure this does not conflict with org.w3c.dom.traversal.NodeFilter .

%REVIEW% Might be safer to start from higher bits and work down, to leave room for the DOM to expand its set of constants... Or, possibly, to create a DTM-specific field for these additional bits.




SHOW_NOTATION
final public static int SHOW_NOTATION(Code)
Show Notation nodes. This is meaningful only when creating an iterator or tree-walker with a Notation node as its root; in this case, it means that the Notation node will appear in the first position of the traversal. Since notations are not part of the document tree, they do not appear when traversing over the main document tree.



SHOW_PROCESSING_INSTRUCTION
final public static int SHOW_PROCESSING_INSTRUCTION(Code)
Show ProcessingInstruction nodes.



SHOW_TEXT
final public static int SHOW_TEXT(Code)
Show Text nodes.





Method Detail
acceptNode
public short acceptNode(int nodeHandle, int whatToShow)(Code)
Test whether a specified node is visible in the logical view of a DTMIterator. Normally, this function will be called by the implementation of DTMIterator; it is not normally called directly from user code.
Parameters:
  nodeHandle - int Handle of the node.
Parameters:
  whatToShow - one of SHOW_XXX values. one of FILTER_ACCEPT, FILTER_REJECT, or FILTER_SKIP.



acceptNode
public short acceptNode(int nodeHandle, int whatToShow, int expandedName)(Code)
Test whether a specified node is visible in the logical view of a DTMIterator. Normally, this function will be called by the implementation of DTMIterator; it is not normally called directly from user code.

TODO: Should this be setNameMatch(expandedName) followed by accept()? Or will we really be testing a different name at every invocation?

%REVIEW% Under what circumstances will this be used? The cases I've considered are just as easy and just about as efficient if the name test is performed in the DTMIterator... -- Joe

%REVIEW% Should that 0xFFFF have a mnemonic assigned to it? Also: This representation is assuming the expanded name is indeed split into high/low 16-bit halfwords. If we ever change the balance between namespace and localname bits (eg because we decide there are many more localnames than namespaces, which is fairly likely), this is going to break. It might be safer to encapsulate the details with a makeExpandedName method and make that responsible for setting up the wildcard version as well.


Parameters:
  nodeHandle - int Handle of the node.
Parameters:
  whatToShow - one of SHOW_XXX values.
Parameters:
  expandedName - a value defining the exanded name as defined in the DTM interface. Wild cards will be defined by 0xFFFF in the namespace and/or localnameportion of the expandedName. one of FILTER_ACCEPT, FILTER_REJECT, or FILTER_SKIP.



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