CORBA.ContextIterator
Contents
-
CORBA.ContextIterator.ContextIterator()
-
CORBA.ContextIterator.ContextIterator()
-
CORBA.ContextIterator.next()
-
CORBA.ContextIterator.setList()
Synopsis:
Class ContextIterator
defines a Java iterator class for Context
.
OrbixWeb:
// Java
package IE.Iona.Orbix2.CORBA.ContextIterator;
public class ContextIterator {
// Constructors
public ContextIterator();
public ContextIterator(IE.Iona.Orbix2.CORBA.Context ctx);
// Methods
public void setList(IE.Iona.Orbix2.CORBA.Context ctx);
public String next();
}
Notes:
OrbixWeb specific.
See Also:
CORBA.Context
CORBA.ContextIterator.ContextIterator()
Synopsis:
public ContextIterator();
Description:
Constructor. Creates an iterator without specifying which context object the iterator will be used to traverse. The method CORBA.Context.setList()
can be used subsequently to set the context object.
Notes:
OrbixWeb specific.
See Also:
CORBA.ContextIterator.setList()
CORBA.ContextIterator.ContextIterator()
Synopsis:
public ContextIterator(E.Iona.Orbix2.CORBA.Context ctx);
Description:
Constructor. Creates an iterator for context ctx
.
Notes:
OrbixWeb specific.
CORBA.ContextIterator.next()
Synopsis:
public String next();
Description:
The i
th call, where i
is even, returns the name of a property in the Context
. Where i
is odd, the i
th call returns the value of a property in the Context
whose name is that returned by the (i-1
)th call
Notes:
OrbixWeb specific.
CORBA.ContextIterator.setList()
Synopsis:
public void setList(IE.Iona.Orbix2.CORBA.Context ctx);
Description:
If a context object has not been specified for the iterator, this method can be used to set the context object. If a context object has been set, then this method can be used to replace the context object (if the ctx
parameter is not the current context) or to reset the iterator position for the current context (if ctx
is the current context).
Notes:
OrbixWeb specific.
[Roadmap]
[Utilities]
[Compiling]
[Configuration]
[Class Reference]
[IR Reference]
[Daemon Reference]
[IDL Grammar]
[System Exceptions]
[Index]