org.exolab.adaptx.xslt
Interface ActionIterator
public interface ActionIterator
This interface that allows iterating of a set of XSLT actions.
Version:
- Keith Visco
boolean | hasNext() - Returns true if a call to #next() can be sucessfully made
(ie.
|
XSLObject | next() - Returns the next XSLObject, or null of none are available
|
hasNext
public boolean hasNext()
Returns true if a call to #next() can be sucessfully made
(ie. a non null value will be returned).
- true if a call to #next() will return a non null value
next
public XSLObject next()
Returns the next XSLObject, or null of none are available
- the next XSLObject in this iteration, or null if
there are no remaining objects.