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


java.lang.Object
   org.apache.xpath.Expression
      org.apache.xpath.patterns.NodeTest
         org.apache.xpath.axes.PredicatedNodeTest
            org.apache.xpath.axes.LocPathIterator
               org.apache.xpath.axes.DescendantIterator

DescendantIterator
public class DescendantIterator extends LocPathIterator (Code)
This class implements an optimized iterator for descendant, descendant-or-self, or "//foo" patterns.
See Also:   org.apache.xpath.axes.LocPathIterator


Field Summary
protected  intm_axis
     The axis that we are traversing.
protected  intm_extendedTypeID
     The extended type ID, not set until setRoot.
protected transient  DTMAxisTraverserm_traverser
     The traverser to use to navigate over the descendants.
final static  longserialVersionUID
    

Constructor Summary
 DescendantIterator(Compiler compiler, int opPos, int analysis)
     Create a DescendantIterator object.
public  DescendantIterator()
     Create a DescendantIterator object.

Method Summary
public  intasNode(XPathContext xctxt)
     Return the first node out of the nodeset, if this expression is a nodeset expression.
public  DTMIteratorcloneWithReset()
     Get a cloned Iterator that is reset to the beginning of the query.
public  booleandeepEquals(Expression expr)
    
public  voiddetach()
     Detaches the iterator from the set which it iterated over, releasing any computational resources and placing the iterator in the INVALID state.
public  intgetAxis()
     Returns the axis being iterated, if it is known.
public  intnextNode()
     Returns the next node in the set and advances the position of the iterator in the set.
public  voidsetRoot(int context, Object environment)
     Initialize the context values for this expression after it is cloned.

Field Detail
m_axis
protected int m_axis(Code)
The axis that we are traversing.



m_extendedTypeID
protected int m_extendedTypeID(Code)
The extended type ID, not set until setRoot.



m_traverser
protected transient DTMAxisTraverser m_traverser(Code)
The traverser to use to navigate over the descendants.



serialVersionUID
final static long serialVersionUID(Code)




Constructor Detail
DescendantIterator
DescendantIterator(Compiler compiler, int opPos, int analysis) throws javax.xml.transform.TransformerException(Code)
Create a DescendantIterator object.
Parameters:
  compiler - A reference to the Compiler that contains the op map.
Parameters:
  opPos - The position within the op map, which contains thelocation path expression for this itterator.
throws:
  javax.xml.transform.TransformerException -



DescendantIterator
public DescendantIterator()(Code)
Create a DescendantIterator object.




Method Detail
asNode
public int asNode(XPathContext xctxt) throws javax.xml.transform.TransformerException(Code)
Return the first node out of the nodeset, if this expression is a nodeset expression. This is the default implementation for nodesets.

WARNING: Do not mutate this class from this function!


Parameters:
  xctxt - The XPath runtime context. the first node out of the nodeset, or DTM.NULL.



cloneWithReset
public DTMIterator cloneWithReset() throws CloneNotSupportedException(Code)
Get a cloned Iterator that is reset to the beginning of the query. A cloned NodeIterator set of the start of the query.
throws:
  CloneNotSupportedException -



deepEquals
public boolean deepEquals(Expression expr)(Code)

See Also:   Expression.deepEquals(Expression)



detach
public void detach()(Code)
Detaches the iterator from the set which it iterated over, releasing any computational resources and placing the iterator in the INVALID state. Afterdetach has been invoked, calls to nextNode orpreviousNode will raise the exception INVALID_STATE_ERR.



getAxis
public int getAxis()(Code)
Returns the axis being iterated, if it is known. Axis.CHILD, etc., or -1 if the axis is not known or is of multiple types.



nextNode
public int nextNode()(Code)
Returns the next node in the set and advances the position of the iterator in the set. After a NodeIterator is created, the first call to nextNode() returns the first node in the set. The next Node in the set being iterated over, ornull if there are no more members in that set.
throws:
  DOMException - INVALID_STATE_ERR: Raised if this method is called after thedetach method was invoked.



setRoot
public void setRoot(int context, Object environment)(Code)
Initialize the context values for this expression after it is cloned.
Parameters:
  context - The XPath runtime context for thistransformation.



Fields inherited from org.apache.xpath.axes.LocPathIterator
protected boolean m_allowDetach(Code)(Java Doc)
protected transient DTM m_cdtm(Code)(Java Doc)
protected transient IteratorPool m_clones(Code)(Java Doc)
protected transient int m_context(Code)(Java Doc)
protected transient int m_currentContextNode(Code)(Java Doc)
protected transient XPathContext m_execContext(Code)(Java Doc)
public transient int m_lastFetched(Code)(Java Doc)
protected transient int m_length(Code)(Java Doc)
protected transient int m_pos(Code)(Java Doc)
transient int m_stackFrame(Code)(Java Doc)
final static long serialVersionUID(Code)(Java Doc)

Methods inherited from org.apache.xpath.axes.LocPathIterator
public void allowDetachToRelease(boolean allowRelease)(Code)(Java Doc)
public DTMIterator asIterator(XPathContext xctxt, int contextNode) throws javax.xml.transform.TransformerException(Code)(Java Doc)
public int asNode(XPathContext xctxt) throws javax.xml.transform.TransformerException(Code)(Java Doc)
public boolean bool(XPathContext xctxt) throws javax.xml.transform.TransformerException(Code)(Java Doc)
public void callVisitors(ExpressionOwner owner, XPathVisitor visitor)(Code)(Java Doc)
public DTMIterator cloneWithReset() throws CloneNotSupportedException(Code)(Java Doc)
public void detach()(Code)(Java Doc)
public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException(Code)(Java Doc)
public void executeCharsToContentHandler(XPathContext xctxt, org.xml.sax.ContentHandler handler) throws javax.xml.transform.TransformerException, org.xml.sax.SAXException(Code)(Java Doc)
public int getAnalysisBits()(Code)(Java Doc)
public int getAxis()(Code)(Java Doc)
final public int getContext()(Code)(Java Doc)
final public int getCurrentContextNode()(Code)(Java Doc)
public int getCurrentNode()(Code)(Java Doc)
final public int getCurrentPos()(Code)(Java Doc)
public DTM getDTM(int nodeHandle)(Code)(Java Doc)
public DTMManager getDTMManager()(Code)(Java Doc)
public boolean getExpandEntityReferences()(Code)(Java Doc)
public DTMFilter getFilter()(Code)(Java Doc)
final public boolean getFoundLast()(Code)(Java Doc)
public boolean getIsTopLevel()(Code)(Java Doc)
public int getLastPos(XPathContext xctxt)(Code)(Java Doc)
public int getLength()(Code)(Java Doc)
final public PrefixResolver getPrefixResolver()(Code)(Java Doc)
public int getRoot()(Code)(Java Doc)
public int getWhatToShow()(Code)(Java Doc)
final public XPathContext getXPathContext()(Code)(Java Doc)
public void incrementCurrentPos()(Code)(Java Doc)
public boolean isDocOrdered()(Code)(Java Doc)
public boolean isFresh()(Code)(Java Doc)
public boolean isMutable()(Code)(Java Doc)
public boolean isNodesetExpr()(Code)(Java Doc)
public int item(int index)(Code)(Java Doc)
abstract public int nextNode()(Code)(Java Doc)
public int previousNode()(Code)(Java Doc)
public void reset()(Code)(Java Doc)
protected int returnNextNode(int nextNode)(Code)(Java Doc)
public void runTo(int index)(Code)(Java Doc)
final public void setCurrentContextNode(int n)(Code)(Java Doc)
public void setCurrentPos(int i)(Code)(Java Doc)
public void setEnvironment(Object environment)(Code)(Java Doc)
public void setIsTopLevel(boolean b)(Code)(Java Doc)
public void setItem(int node, int index)(Code)(Java Doc)
protected void setNextPosition(int next)(Code)(Java Doc)
public void setRoot(int context, Object environment)(Code)(Java Doc)
public void setShouldCacheNodes(boolean b)(Code)(Java Doc)
public int size()(Code)(Java Doc)

Fields inherited from org.apache.xpath.axes.PredicatedNodeTest
final static boolean DEBUG_PREDICATECOUNTING(Code)(Java Doc)
protected transient boolean m_foundLast(Code)(Java Doc)
protected LocPathIterator m_lpi(Code)(Java Doc)
protected int m_predCount(Code)(Java Doc)
transient int m_predicateIndex(Code)(Java Doc)
protected transient int[] m_proximityPositions(Code)(Java Doc)
final static long serialVersionUID(Code)(Java Doc)

Methods inherited from org.apache.xpath.axes.PredicatedNodeTest
public short acceptNode(int n)(Code)(Java Doc)
public void callPredicateVisitors(XPathVisitor visitor)(Code)(Java Doc)
public boolean canTraverseOutsideSubtree()(Code)(Java Doc)
public Object clone() throws CloneNotSupportedException(Code)(Java Doc)
protected void countProximityPosition(int i)(Code)(Java Doc)
public boolean deepEquals(Expression expr)(Code)(Java Doc)
boolean executePredicates(int context, XPathContext xctxt) throws javax.xml.transform.TransformerException(Code)(Java Doc)
public void fixupVariables(java.util.Vector vars, int globalsSize)(Code)(Java Doc)
abstract public int getLastPos(XPathContext xctxt)(Code)(Java Doc)
public LocPathIterator getLocPathIterator()(Code)(Java Doc)
public Expression getPredicate(int index)(Code)(Java Doc)
public int getPredicateCount()(Code)(Java Doc)
public int getPredicateIndex()(Code)(Java Doc)
public int getProximityPosition()(Code)(Java Doc)
public int getProximityPosition(XPathContext xctxt)(Code)(Java Doc)
protected int getProximityPosition(int predicateIndex)(Code)(Java Doc)
protected void initPredicateInfo(Compiler compiler, int opPos) throws javax.xml.transform.TransformerException(Code)(Java Doc)
public void initProximityPosition(int i) throws javax.xml.transform.TransformerException(Code)(Java Doc)
public boolean isReverseAxes()(Code)(Java Doc)
protected String nodeToString(int n)(Code)(Java Doc)
public void resetProximityPositions()(Code)(Java Doc)
public void setLocPathIterator(LocPathIterator li)(Code)(Java Doc)
public void setPredicateCount(int count)(Code)(Java Doc)

Fields inherited from org.apache.xpath.patterns.NodeTest
final public static XNumber SCORE_NODETEST(Code)(Java Doc)
final public static XNumber SCORE_NONE(Code)(Java Doc)
final public static XNumber SCORE_NSWILD(Code)(Java Doc)
final public static XNumber SCORE_OTHER(Code)(Java Doc)
final public static XNumber SCORE_QNAME(Code)(Java Doc)
final public static int SHOW_BYFUNCTION(Code)(Java Doc)
final public static String SUPPORTS_PRE_STRIPPING(Code)(Java Doc)
final public static String WILD(Code)(Java Doc)
protected String m_name(Code)(Java Doc)
protected int m_whatToShow(Code)(Java Doc)

Methods inherited from org.apache.xpath.patterns.NodeTest
protected void calcScore()(Code)(Java Doc)
public void callVisitors(ExpressionOwner owner, XPathVisitor visitor)(Code)(Java Doc)
public static void debugWhatToShow(int whatToShow)(Code)(Java Doc)
public boolean deepEquals(Expression expr)(Code)(Java Doc)
public XObject execute(XPathContext xctxt, int context) throws javax.xml.transform.TransformerException(Code)(Java Doc)
public XObject execute(XPathContext xctxt, int context, DTM dtm, int expType) throws javax.xml.transform.TransformerException(Code)(Java Doc)
public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException(Code)(Java Doc)
public void fixupVariables(java.util.Vector vars, int globalsSize)(Code)(Java Doc)
public double getDefaultScore()(Code)(Java Doc)
public String getLocalName()(Code)(Java Doc)
public String getNamespace()(Code)(Java Doc)
public static int getNodeTypeTest(int whatToShow)(Code)(Java Doc)
public XNumber getStaticScore()(Code)(Java Doc)
public int getWhatToShow()(Code)(Java Doc)
public void initNodeTest(int whatToShow)(Code)(Java Doc)
public void initNodeTest(int whatToShow, String namespace, String name)(Code)(Java Doc)
public void setLocalName(String name)(Code)(Java Doc)
public void setNamespace(String ns)(Code)(Java Doc)
public void setStaticScore(XNumber score)(Code)(Java Doc)
public void setWhatToShow(int what)(Code)(Java Doc)

Methods inherited from org.apache.xpath.Expression
public DTMIterator asIterator(XPathContext xctxt, int contextNode) throws javax.xml.transform.TransformerException(Code)(Java Doc)
public DTMIterator asIteratorRaw(XPathContext xctxt, int contextNode) throws javax.xml.transform.TransformerException(Code)(Java Doc)
public int asNode(XPathContext xctxt) throws javax.xml.transform.TransformerException(Code)(Java Doc)
public void assertion(boolean b, java.lang.String msg)(Code)(Java Doc)
public boolean bool(XPathContext xctxt) throws javax.xml.transform.TransformerException(Code)(Java Doc)
public boolean canTraverseOutsideSubtree()(Code)(Java Doc)
abstract public boolean deepEquals(Expression expr)(Code)(Java Doc)
public void error(XPathContext xctxt, String msg, Object[] args) throws javax.xml.transform.TransformerException(Code)(Java Doc)
public XObject execute(XPathContext xctxt, int currentNode) throws javax.xml.transform.TransformerException(Code)(Java Doc)
public XObject execute(XPathContext xctxt, int currentNode, DTM dtm, int expType) throws javax.xml.transform.TransformerException(Code)(Java Doc)
abstract public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException(Code)(Java Doc)
public XObject execute(XPathContext xctxt, boolean destructiveOK) throws javax.xml.transform.TransformerException(Code)(Java Doc)
public void executeCharsToContentHandler(XPathContext xctxt, ContentHandler handler) throws javax.xml.transform.TransformerException, org.xml.sax.SAXException(Code)(Java Doc)
public void exprAddChild(ExpressionNode n, int i)(Code)(Java Doc)
public ExpressionNode exprGetChild(int i)(Code)(Java Doc)
public int exprGetNumChildren()(Code)(Java Doc)
public ExpressionNode exprGetParent()(Code)(Java Doc)
public void exprSetParent(ExpressionNode n)(Code)(Java Doc)
abstract public void fixupVariables(java.util.Vector vars, int globalsSize)(Code)(Java Doc)
public int getColumnNumber()(Code)(Java Doc)
public ExpressionNode getExpressionOwner()(Code)(Java Doc)
public int getLineNumber()(Code)(Java Doc)
public String getPublicId()(Code)(Java Doc)
public String getSystemId()(Code)(Java Doc)
public boolean isNodesetExpr()(Code)(Java Doc)
final protected boolean isSameClass(Expression expr)(Code)(Java Doc)
public boolean isStableNumber()(Code)(Java Doc)
public double num(XPathContext xctxt) throws javax.xml.transform.TransformerException(Code)(Java Doc)
public void warn(XPathContext xctxt, String msg, Object[] args) throws javax.xml.transform.TransformerException(Code)(Java Doc)
public XMLString xstr(XPathContext xctxt) throws javax.xml.transform.TransformerException(Code)(Java Doc)

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.