All Packages Class Hierarchy This Package Previous Next Index
Class COM.objectspace.jgl.voyager.VStack
java.lang.Object
|
+----COM.objectspace.voyager.VObject
|
+----COM.objectspace.jgl.voyager.VStack
- public class VStack
- extends VObject
- implements Container
VStack is the virtual class of Stack.
-
VStack()
- Construct a VStack that is not associated with an object.
-
VStack(Sequence, String)
-
-
VStack(Sequence, String, long)
-
-
VStack(Stack, String)
-
-
VStack(Stack, String, long)
-
-
VStack(String)
-
-
VStack(String, long)
-
-
VStack(VSubspace)
- Construct a VStack and connect it to the specified object.
-
add(Object)
-
-
add(Object, Messenger)
-
-
clear()
-
-
clear(Messenger)
-
-
clone()
-
-
clone(Messenger)
-
-
copy(Stack)
-
-
copy(Stack, Messenger)
-
-
elements()
-
-
elements(Messenger)
-
-
equals(Stack)
-
-
equals(Stack, Messenger)
-
-
finish()
-
-
finish(Messenger)
-
-
getOriginalClassName()
-
-
isEmpty()
-
-
isEmpty(Messenger)
-
-
maxSize()
-
-
maxSize(Messenger)
-
-
originalIsInterface()
-
-
pop()
-
-
pop(Messenger)
-
-
push(Object)
-
-
push(Object, Messenger)
-
-
remove(Enumeration)
-
-
remove(Enumeration, Enumeration)
-
-
remove(Enumeration, Enumeration, Messenger)
-
-
remove(Enumeration, Messenger)
-
-
size()
-
-
size(Messenger)
-
-
start()
-
-
start(Messenger)
-
-
swap(Stack)
-
-
swap(Stack, Messenger)
-
-
top()
-
-
top(Messenger)
-
-
toString()
-
-
toString(Messenger)
-
VStack
public VStack()
- Construct a VStack 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.
VStack
public VStack(VSubspace reference) throws VoyagerException
- Construct a VStack and connect it to the specified object.
- Parameters:
- reference - A reference to the object to connect to.
- Throws: VoyagerException
- A voyager-related exception occurred.
VStack
public VStack(String __address,
long __timeout) throws VoyagerException
- Parameters:
- __address - The address of the program where the instantiation should occur.
- __timeout - The timeout value in milliseconds.
- Throws: VoyagerException
- A voyager-related exception occurred.
VStack
public VStack(String __address) throws VoyagerException
- Parameters:
- __address - The address of the program where the instantiation should occur.
- Throws: VoyagerException
- A voyager-related exception occurred.
VStack
public VStack(Sequence arg1,
String __address,
long __timeout) throws VoyagerException
- Parameters:
- __address - The address of the program where the instantiation should occur.
- __timeout - The timeout value in milliseconds.
- Throws: VoyagerException
- A voyager-related exception occurred.
VStack
public VStack(Sequence arg1,
String __address) throws VoyagerException
- Parameters:
- __address - The address of the program where the instantiation should occur.
- Throws: VoyagerException
- A voyager-related exception occurred.
VStack
public VStack(Stack arg1,
String __address,
long __timeout) throws VoyagerException
- Parameters:
- __address - The address of the program where the instantiation should occur.
- __timeout - The timeout value in milliseconds.
- Throws: VoyagerException
- A voyager-related exception occurred.
VStack
public VStack(Stack arg1,
String __address) throws VoyagerException
- Parameters:
- __address - The address of the program where the instantiation should occur.
- Throws: VoyagerException
- A voyager-related exception occurred.
getOriginalClassName
public String getOriginalClassName()
- Overrides:
- getOriginalClassName in class VObject
originalIsInterface
public boolean originalIsInterface()
- Overrides:
- originalIsInterface in class VObject
copy
public Result copy(Stack arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
copy
public void copy(Stack arg1) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
clone
public Result clone(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
clone
public Object clone()
- Overrides:
- clone in class Object
toString
public Result toString(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
- Overrides:
- toString in class VObject
toString
public String toString()
- Overrides:
- toString in class VObject
equals
public Result equals(Stack arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
equals
public boolean equals(Stack arg1) 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()
size
public Result size(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
size
public int size()
maxSize
public Result maxSize(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
maxSize
public int maxSize()
top
public Result top(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
top
public Object top() throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
add
public Result add(Object arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
add
public Object add(Object arg1)
push
public Result push(Object arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
push
public void push(Object arg1) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
pop
public Result pop(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
pop
public Object pop() throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
clear
public Result clear(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
clear
public void clear()
elements
public Result elements(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
elements
public Enumeration elements()
start
public Result start(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
start
public ForwardIterator start()
finish
public Result finish(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
finish
public ForwardIterator finish()
swap
public Result swap(Stack arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
swap
public void swap(Stack arg1) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
remove
public Result remove(Enumeration arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
remove
public Object remove(Enumeration arg1)
remove
public Result remove(Enumeration arg1,
Enumeration arg2,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
remove
public int remove(Enumeration arg1,
Enumeration arg2)
All Packages Class Hierarchy This Package Previous Next Index