All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----java.util.VectorIterator
doAll()
method performs method action()
on each element of the
Vector, in no guaranteed order. Methods preAction()
,
action()
and postAction()
are empty. They
must be implemented in subclasses of this class.
public VectorIterator()
public void doAll(Object vector)
action()
on every element of the Vector. Before
the iteration starts, preAction()
is executed, and
afterwards postAction()
is executed. The iteration is
performed in no guaranteed order.
public void preAction()
public void action(Object item)
public void postAction()
All Packages Class Hierarchy This Package Previous Next Index