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


Constructor Index

 o OpIterator(Vector)
Creates a new OpIterator from the specified vector of operators

Method Index

 o hasMoreElements()
 o nextElement()
Get the next operator.

Constructors

 o 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

Methods

 o hasMoreElements
 public boolean hasMoreElements()
Returns:
true if more elements available, false otherwise. nextElement is guaranteed to return an element if hasMoreElements returns true.
 o 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