BEA Systems, Inc.

WebLogic Server 6.1 API Reference

weblogic.apache.xpath.axes
Class PredicatedNodeTest

java.lang.Object
  |
  +--weblogic.apache.xpath.Expression
        |
        +--weblogic.apache.xpath.patterns.NodeTest
              |
              +--weblogic.apache.xpath.axes.PredicatedNodeTest
Direct Known Subclasses:
AxesWalker, LocPathIterator

public abstract class PredicatedNodeTest
extends NodeTest
implements SubContextList

See Also:
Serialized Form

Field Summary
protected  LocPathIterator m_lpi
          The owning location path iterator.
protected  int[] m_proximityPositions
          An array of counts that correspond to the number of predicates the step contains.
 
Fields inherited from class weblogic.apache.xpath.patterns.NodeTest
m_whatToShow, SCORE_NODETEST, SCORE_NONE, SCORE_NSWILD, SCORE_OTHER, SCORE_QNAME, SHOW_BYFUNCTION, SHOW_NAMESPACE, SUPPORTS_PRE_STRIPPING, WILD
 
Fields inherited from class weblogic.apache.xpath.Expression
m_slocator
 
Constructor Summary
PredicatedNodeTest()
          Construct an AxesWalker.
PredicatedNodeTest(LocPathIterator locPathIterator)
          Construct an AxesWalker using a LocPathIterator.
 
Method Summary
 short acceptNode(org.w3c.dom.Node n)
          Test whether a specified node is visible in the logical view of a TreeWalker or NodeIterator.
 boolean canTraverseOutsideSubtree()
          Tell if this expression or it's subexpressions can traverse outside the current subtree.
 java.lang.Object clone()
          Get a cloned AxesWalker.
protected  void countProximityPosition(int i)
          Count forward one proximity position.
abstract  int getLastPos(XPathContext xctxt)
          Get the index of the last node that can be itterated to.
 LocPathIterator getLocPathIterator()
          Get the owning location path iterator.
 int getPredicateCount()
          Get the number of predicates that this walker has.
 int getPredicateIndex()
          Get which predicate is executing.
 int getProximityPosition()
          Get the current sub-context position.
protected  int getProximityPosition(int predicateIndex)
          Get the current sub-context position.
 int getProximityPosition(XPathContext xctxt)
          Get the current sub-context position.
protected  void initPredicateInfo(Compiler compiler, int opPos)
          Init predicate info.
 void initProximityPosition(int i)
          Init the proximity position to zero for a forward axes.
 boolean isReverseAxes()
          Tells if this is a reverse axes.
protected  java.lang.String nodeToString(org.w3c.dom.Node n)
          Diagnostics.
 void resetProximityPositions()
          Reset the proximity positions counts.
 void setLocPathIterator(LocPathIterator li)
          Set the location path iterator owner for this walker.
 void setPredicateCount(int count)
          Set the number of predicates that this walker has.
 
Methods inherited from class weblogic.apache.xpath.patterns.NodeTest
calcScore, debugWhatToShow, execute, execute, getDefaultScore, getLocalName, getNamespace, getWhatToShow, initNodeTest, initNodeTest
 
Methods inherited from class weblogic.apache.xpath.Expression
assert, error, setSourceLocator, warn
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

m_lpi

protected LocPathIterator m_lpi
The owning location path iterator.

m_proximityPositions

protected transient int[] m_proximityPositions
An array of counts that correspond to the number of predicates the step contains.
Constructor Detail

PredicatedNodeTest

public PredicatedNodeTest(LocPathIterator locPathIterator)
Construct an AxesWalker using a LocPathIterator.

Parameters:
locPathIterator - non-null reference to the parent iterator.

PredicatedNodeTest

public PredicatedNodeTest()
Construct an AxesWalker. The location path iterator will have to be set before use.
Method Detail

clone

public java.lang.Object clone()
                       throws java.lang.CloneNotSupportedException
Get a cloned AxesWalker.

Returns:
A new AxesWalker that can be used without mutating this one.
Throws:
java.lang.CloneNotSupportedException -  
Overrides:
clone in class java.lang.Object

getPredicateCount

public int getPredicateCount()
Get the number of predicates that this walker has.

Returns:
the number of predicates that this walker has.

setPredicateCount

public void setPredicateCount(int count)
Set the number of predicates that this walker has. This does more that one would think, as it creates a new predicate array of the size of the count argument, and copies count predicates into the new one from the old, and then reassigns the predicates value. All this to keep from having to have a predicate count value.

Parameters:
count - The number of predicates, which must be equal or less than the existing count.

initPredicateInfo

protected void initPredicateInfo(Compiler compiler,
                                 int opPos)
                          throws javax.xml.transform.TransformerException
Init predicate info.

Parameters:
compiler - The Compiler object that has information about this walker in the op map.
opPos - The op code position of this location step.
Throws:
javax.xml.transform.TransformerException -  

getProximityPosition

public int getProximityPosition()
Get the current sub-context position.

Returns:
The node position of this walker in the sub-context node list.

getProximityPosition

public int getProximityPosition(XPathContext xctxt)
Get the current sub-context position.
Specified by:
getProximityPosition in interface SubContextList

Parameters:
xctxt - The XPath runtime context.
Returns:
The node position of this walker in the sub-context node list.

getLastPos

public abstract int getLastPos(XPathContext xctxt)
Get the index of the last node that can be itterated to.
Specified by:
getLastPos in interface SubContextList

Parameters:
xctxt - XPath runtime context.
Returns:
the index of the last node that can be itterated to.

getProximityPosition

protected int getProximityPosition(int predicateIndex)
Get the current sub-context position.

Parameters:
predicateIndex - The index of the predicate where the proximity should be taken from.
Returns:
The node position of this walker in the sub-context node list.

resetProximityPositions

public void resetProximityPositions()
Reset the proximity positions counts.


initProximityPosition

public void initProximityPosition(int i)
                           throws javax.xml.transform.TransformerException
Init the proximity position to zero for a forward axes.

Parameters:
i - The index into the m_proximityPositions array.
Throws:
javax.xml.transform.TransformerException -  

countProximityPosition

protected void countProximityPosition(int i)
Count forward one proximity position.

Parameters:
i - The index into the m_proximityPositions array, where the increment will occur.

isReverseAxes

public boolean isReverseAxes()
Tells if this is a reverse axes.

Returns:
false, unless a derived class overrides.

getPredicateIndex

public int getPredicateIndex()
Get which predicate is executing.

Returns:
The current predicate index, or -1 if no predicate is executing.

nodeToString

protected java.lang.String nodeToString(org.w3c.dom.Node n)
Diagnostics.

Parameters:
n - Node to give diagnostic information about, or null.
Returns:
Informative string about the argument.

acceptNode

public short acceptNode(org.w3c.dom.Node n)
Test whether a specified node is visible in the logical view of a TreeWalker or NodeIterator. This function will be called by the implementation of TreeWalker and NodeIterator; it is not intended to be called directly from user code.

Parameters:
n - The node to check to see if it passes the filter or not.
Returns:
a constant to determine whether the node is accepted, rejected, or skipped, as defined above .

getLocPathIterator

public LocPathIterator getLocPathIterator()
Get the owning location path iterator.

Returns:
the owning location path iterator, which should not be null.

setLocPathIterator

public void setLocPathIterator(LocPathIterator li)
Set the location path iterator owner for this walker. Besides initialization, this function is called during cloning operations.

Parameters:
li - non-null reference to the owning location path iterator.

canTraverseOutsideSubtree

public boolean canTraverseOutsideSubtree()
Tell if this expression or it's subexpressions can traverse outside the current subtree.

Returns:
true if traversal outside the context node's subtree can occur.
Overrides:
canTraverseOutsideSubtree in class Expression

Documentation is available at
http://download.oracle.com/docs/cd/E13222_01/wls/docs61

WebLogic classes and methods that do not appear in this reference are not public and are not supported.