Class ModuleStoreIterator

java.lang.Object
   |
   +----java.util.VectorIterator
           |
           +----ModuleStoreIterator

class ModuleStoreIterator
extends VectorIterator
implements StoreIterator
This class is an extension of VectorIterator that implements StoreIterator instead of Iterator. This class contains a method doAll() that only works on a ModuleStore and a method action() that only works on a module. The methods doAll() and action() inherited from VectorIterator (and which are part of interface Iterator) and the methods doAll() and action() from StoreIterator are `disabled' in this class: when called, they only generate an exception.

Version:
$Revision: 1.2 $

Constructor Index

 o ModuleStoreIterator()

Method Index

 o action(Module)
 o action(Object)
 o action(StoreElement)
 o doAll(ModuleStore)
 o doAll(Object)
This is the entry point of the iterator that can be called by a client class.
 o doAll(Store)

Constructors

 o ModuleStoreIterator
 ModuleStoreIterator()

Methods

 o doAll
 public void doAll(ModuleStore s)
 o action
 public void action(Module m)
 o doAll
 public void doAll(Store s)
 o action
 public void action(StoreElement e)
 o doAll
 public void doAll(Object vector)
This is the entry point of the iterator that can be called by a client class.

Overrides:
doAll in class VectorIterator
 o action
 public void action(Object item)
Overrides:
action in class VectorIterator