Class ConnectorStoreIterator
java.lang.Object
|
+----java.util.VectorIterator
|
+----ConnectorStoreIterator
- abstract class ConnectorStoreIterator
- 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 ConnectorStore and a method
action() that only works on a Connector. 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.
-
ConnectorStoreIterator()
-
-
action(Connector)
-
-
action(Object)
-
-
action(StoreElement)
-
-
doAll(ConnectorStore)
-
-
doAll(Object)
- This is the entry point of the iterator that can be called by a client
class.
-
doAll(Store)
-
ConnectorStoreIterator
ConnectorStoreIterator()
doAll
public void doAll(ConnectorStore s)
action
public void action(Connector c)
doAll
public void doAll(Store s)
action
public void action(StoreElement e)
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
action
public void action(Object item)
- Overrides:
- action in class VectorIterator