| JGL - The Generic Collection Library for Java |
All Packages Class Hierarchy This Package Previous Next Index
Class com.objectspace.jgl.voyager.VEnumeration
java.lang.Object
|
+----com.objectspace.voyager.VObject
|
+----com.objectspace.jgl.voyager.VEnumeration
- public class VEnumeration
- extends VObject
- implements Enumeration
-
VEnumeration()
- Construct a VEnumeration that is not associated with an object.
-
VEnumeration(VSubspace)
- Construct a VEnumeration and connect it to the specified object.
-
hasMoreElements()
-
-
hasMoreElements(Messenger)
-
-
nextElement()
-
-
nextElement(Messenger)
-
VEnumeration
public VEnumeration()
- Construct a VEnumeration that is not associated with an object.
This function is used internally by Voyager and should not
be invoked by user code. Any attempt to send a message to a
reference created using this default constructor will cause a
NullPointerException to be thrown.
VEnumeration
public VEnumeration(VSubspace reference) throws VoyagerException
- Construct a VEnumeration and connect it to the specified object.
- Parameters:
- reference - A reference to the object to connect to.
- Throws: VoyagerException
- A voyager-related exception occurred.
hasMoreElements
public Result hasMoreElements(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
hasMoreElements
public boolean hasMoreElements()
nextElement
public Result nextElement(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
nextElement
public Object nextElement()
All Packages Class Hierarchy This Package Previous Next Index