NVListIterator
defines a Java iterator class for NVList
which returns the NamedValue
s in the list.
// Java package IE.Iona.Orbix2.CORBA; public class NVListIterator { // Constructors public NVListIterator(); public NVListIterator(NVList nvl); // Methods public void setList(NVList nvl); public IE.Iona.Orbix2.CORBA.NamedValue next(); }
CORBA.NVList
CORBA.NamedValue
public NVListIterator();
NVList
object the iterator will be used to traverse. The method CORBA.NVList.setList()
can be used subsequently to set the NVList
object.
CORBA.NVList.setList()
public NVListIterator(NVList nvl);
NVList
nvl
.
public IE.Iona.Orbix2.CORBA.NamedValue next();
i
th call returns the i
th NamedValue
object in the NVList
.
public void setList(NVList nvl);
NVList
object has not been specified for the iterator, this method can be used to set the NVList
object. If an NVList
object has been set, then this method can be used to replace the NVList
object (if the nvl
parameter is not the current NVList
) or to reset the iterator position for the current NVList
(if nvl
is the current NVList
).