All Packages Class Hierarchy This Package Previous Next Index
Class ninja.activeproxy.path.OpIterator
java.lang.Object
|
+----ninja.activeproxy.path.OpIterator
- public class OpIterator
- extends Object
- implements Enumeration
OpIterator iterates through a set of operators
-
OpIterator(Vector)
- Creates a new OpIterator from the specified vector of operators
-
hasMoreElements()
-
-
nextElement()
- Get the next operator.
OpIterator
public OpIterator(Vector results)
- Creates a new OpIterator from the specified vector of operators
- Parameters:
- results - Vector of operators
Elements of the vector may be:
SearchResult: result of an SDS query, which is converted into an OpInfo structure
OpInfo: An OpInfo structure, which is used directly
hasMoreElements
public boolean hasMoreElements()
- Returns:
- true if more elements available,
false otherwise.
nextElement is guaranteed to return an element
if hasMoreElements returns true.
nextElement
public Object nextElement()
- Get the next operator.
- Returns:
- Object, which is actually ninja.madden.OpInfo
containing information about the location and XML of the operator
All Packages Class Hierarchy This Package Previous Next Index