| JGL - The Generic Collection Library for Java |
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
- super class of:
- VMap
-
VDictionary()
- Construct a VDictionary that is not associated with an object.
-
VDictionary(VSubspace)
- Construct a VDictionary and connect it to the specified object.
-
elements()
-
-
elements(Messenger)
-
-
get(Object)
-
-
get(Object, Messenger)
-
-
isEmpty()
-
-
isEmpty(Messenger)
-
-
keys()
-
-
keys(Messenger)
-
-
put(Object, Object)
-
-
put(Object, Object, Messenger)
-
-
remove(Object)
-
-
remove(Object, Messenger)
-
-
size()
-
-
size(Messenger)
-
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.
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.
size
public Result size(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
size
public int size() throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
isEmpty
public Result isEmpty(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
isEmpty
public boolean isEmpty() throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
keys
public Result keys(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
keys
public Enumeration keys() throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
elements
public Result elements(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
elements
public Enumeration elements() throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
get
public Result get(Object arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
get
public Object get(Object arg1) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
put
public Result put(Object arg1,
Object arg2,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
put
public Object put(Object arg1,
Object arg2) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
remove
public Result remove(Object arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
remove
public Object remove(Object arg1) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
All Packages Class Hierarchy This Package Previous Next Index