All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class COM.objectspace.jgl.voyager.VDictionary

java.lang.Object
   |
   +----COM.objectspace.voyager.VObject
           |
           +----COM.objectspace.jgl.voyager.VDictionary

public class VDictionary
extends VObject
VDictionary is the virtual class of Dictionary.


Constructor Index

 o VDictionary()
Construct a VDictionary that is not associated with an object.
 o VDictionary(VSubspace)
Construct a VDictionary and connect it to the specified object.

Method Index

 o elements()
 o elements(Messenger)
 o get(Object)
 o get(Object, Messenger)
 o getOriginalClassName()
 o isEmpty()
 o isEmpty(Messenger)
 o keys()
 o keys(Messenger)
 o originalIsInterface()
 o put(Object, Object)
 o put(Object, Object, Messenger)
 o remove(Object)
 o remove(Object, Messenger)
 o size()
 o size(Messenger)

Constructors

 o VDictionary
 public VDictionary()
Construct a VDictionary 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.

 o VDictionary
 public VDictionary(VSubspace reference) throws VoyagerException
Construct a VDictionary and connect it to the specified object.

Parameters:
reference - A reference to the object to connect to.
Throws: VoyagerException
A voyager-related exception occurred.

Methods

 o getOriginalClassName
 public String getOriginalClassName()
Overrides:
getOriginalClassName in class VObject
 o originalIsInterface
 public boolean originalIsInterface()
Overrides:
originalIsInterface in class VObject
 o size
 public Result size(Messenger __messenger)
Parameters:
__messenger - The messenger that should be used to invoke the method
 o size
 public int size() throws VoyagerException
Throws: VoyagerException
A voyager-related exception occurred.
 o isEmpty
 public Result isEmpty(Messenger __messenger)
Parameters:
__messenger - The messenger that should be used to invoke the method
 o isEmpty
 public boolean isEmpty() throws VoyagerException
Throws: VoyagerException
A voyager-related exception occurred.
 o keys
 public Result keys(Messenger __messenger)
Parameters:
__messenger - The messenger that should be used to invoke the method
 o keys
 public Enumeration keys() throws VoyagerException
Throws: VoyagerException
A voyager-related exception occurred.
 o elements
 public Result elements(Messenger __messenger)
Parameters:
__messenger - The messenger that should be used to invoke the method
 o elements
 public Enumeration elements() throws VoyagerException
Throws: VoyagerException
A voyager-related exception occurred.
 o get
 public Result get(Object arg1,
                   Messenger __messenger)
Parameters:
__messenger - The messenger that should be used to invoke the method
 o get
 public Object get(Object arg1) throws VoyagerException
Throws: VoyagerException
A voyager-related exception occurred.
 o put
 public Result put(Object arg1,
                   Object arg2,
                   Messenger __messenger)
Parameters:
__messenger - The messenger that should be used to invoke the method
 o put
 public Object put(Object arg1,
                   Object arg2) throws VoyagerException
Throws: VoyagerException
A voyager-related exception occurred.
 o remove
 public Result remove(Object arg1,
                      Messenger __messenger)
Parameters:
__messenger - The messenger that should be used to invoke the method
 o remove
 public Object remove(Object arg1) throws VoyagerException
Throws: VoyagerException
A voyager-related exception occurred.

All Packages  Class Hierarchy  This Package  Previous  Next  Index