All Packages Class Hierarchy This Package Previous Next Index
Class COM.objectspace.jgl.voyager.VArray
java.lang.Object
|
+----COM.objectspace.voyager.VObject
|
+----COM.objectspace.jgl.voyager.VArray
- public class VArray
- extends VObject
- implements Sequence
VArray is the virtual class of Array.
-
VArray()
- Construct a VArray that is not associated with an object.
-
VArray(Array, String)
-
-
VArray(Array, String, long)
-
-
VArray(int, Object, String)
-
-
VArray(int, Object, String, long)
-
-
VArray(int, String)
-
-
VArray(int, String, long)
-
-
VArray(Object[], String)
-
-
VArray(Object[], String, long)
-
-
VArray(String)
-
-
VArray(String, long)
-
-
VArray(VSubspace)
- Construct a VArray and connect it to the specified object.
-
add(Object)
-
-
add(Object, Messenger)
-
-
at(int)
-
-
at(int, Messenger)
-
-
back()
-
-
back(Messenger)
-
-
begin()
-
-
begin(Messenger)
-
-
capacity()
-
-
capacity(Messenger)
-
-
clear()
-
-
clear(Messenger)
-
-
clone()
-
-
clone(Messenger)
-
-
contains(Object)
-
-
contains(Object, Messenger)
-
-
copy(Array)
-
-
copy(Array, Messenger)
-
-
copyTo(Object[])
-
-
copyTo(Object[], Messenger)
-
-
count(int, int, Object)
-
-
count(int, int, Object, Messenger)
-
-
count(Object)
-
-
count(Object, Messenger)
-
-
elements()
-
-
elements(Messenger)
-
-
end()
-
-
end(Messenger)
-
-
ensureCapacity(int)
-
-
ensureCapacity(int, Messenger)
-
-
equals(Array)
-
-
equals(Array, Messenger)
-
-
finish()
-
-
finish(Messenger)
-
-
front()
-
-
front(Messenger)
-
-
getOriginalClassName()
-
-
indexOf(int, int, Object)
-
-
indexOf(int, int, Object, Messenger)
-
-
indexOf(Object)
-
-
indexOf(Object, Messenger)
-
-
insert(ArrayIterator, ForwardIterator, ForwardIterator)
-
-
insert(ArrayIterator, ForwardIterator, ForwardIterator, Messenger)
-
-
insert(ArrayIterator, int, Object)
-
-
insert(ArrayIterator, int, Object, Messenger)
-
-
insert(ArrayIterator, Object)
-
-
insert(ArrayIterator, Object, Messenger)
-
-
insert(int, ForwardIterator, ForwardIterator)
-
-
insert(int, ForwardIterator, ForwardIterator, Messenger)
-
-
insert(int, int, Object)
-
-
insert(int, int, Object, Messenger)
-
-
insert(int, Object)
-
-
insert(int, Object, Messenger)
-
-
isEmpty()
-
-
isEmpty(Messenger)
-
-
maxSize()
-
-
maxSize(Messenger)
-
-
originalIsInterface()
-
-
popBack()
-
-
popBack(Messenger)
-
-
popFront()
-
-
popFront(Messenger)
-
-
pushBack(Object)
-
-
pushBack(Object, Messenger)
-
-
pushFront(Object)
-
-
pushFront(Object, Messenger)
-
-
put(int, Object)
-
-
put(int, Object, Messenger)
-
-
remove(Enumeration)
-
-
remove(Enumeration, Enumeration)
-
-
remove(Enumeration, Enumeration, Messenger)
-
-
remove(Enumeration, Messenger)
-
-
remove(int)
-
-
remove(int, int)
-
-
remove(int, int, Messenger)
-
-
remove(int, int, Object)
-
-
remove(int, int, Object, Messenger)
-
-
remove(int, Messenger)
-
-
remove(Object)
-
-
remove(Object, int)
-
-
remove(Object, int, Messenger)
-
-
remove(Object, Messenger)
-
-
replace(int, int, Object, Object)
-
-
replace(int, int, Object, Object, Messenger)
-
-
replace(Object, Object)
-
-
replace(Object, Object, Messenger)
-
-
setSize(int)
-
-
setSize(int, Messenger)
-
-
size()
-
-
size(Messenger)
-
-
start()
-
-
start(Messenger)
-
-
swap(Array)
-
-
swap(Array, Messenger)
-
-
toString()
-
-
toString(Messenger)
-
-
trimToSize()
-
-
trimToSize(Messenger)
-
VArray
public VArray()
- Construct a VArray 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.
VArray
public VArray(VSubspace reference) throws VoyagerException
- Construct a VArray and connect it to the specified object.
- Parameters:
- reference - A reference to the object to connect to.
- Throws: VoyagerException
- A voyager-related exception occurred.
VArray
public VArray(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.
VArray
public VArray(String __address) throws VoyagerException
- Parameters:
- __address - The address of the program where the instantiation should occur.
- Throws: VoyagerException
- A voyager-related exception occurred.
VArray
public VArray(int 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.
VArray
public VArray(int arg1,
String __address) throws VoyagerException
- Parameters:
- __address - The address of the program where the instantiation should occur.
- Throws: VoyagerException
- A voyager-related exception occurred.
VArray
public VArray(int arg1,
Object arg2,
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.
VArray
public VArray(int arg1,
Object arg2,
String __address) throws VoyagerException
- Parameters:
- __address - The address of the program where the instantiation should occur.
- Throws: VoyagerException
- A voyager-related exception occurred.
VArray
public VArray(Object 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.
VArray
public VArray(Object arg1[],
String __address) throws VoyagerException
- Parameters:
- __address - The address of the program where the instantiation should occur.
- Throws: VoyagerException
- A voyager-related exception occurred.
VArray
public VArray(Array 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.
VArray
public VArray(Array 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
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
equals
public Result equals(Array arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
equals
public boolean equals(Array arg1) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
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
copy
public Result copy(Array arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
copy
public void copy(Array arg1) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
copyTo
public Result copyTo(Object arg1[],
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
copyTo
public void copyTo(Object 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()
capacity
public Result capacity(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
capacity
public int capacity() throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
back
public Result back(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
back
public Object back()
front
public Result front(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
front
public Object front()
at
public Result at(int arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
at
public Object at(int arg1)
put
public Result put(int arg1,
Object arg2,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
put
public void put(int arg1,
Object arg2)
clear
public Result clear(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
clear
public void clear()
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(int arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
remove
public Object remove(int arg1) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
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)
remove
public Result remove(int arg1,
int arg2,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
remove
public int remove(int arg1,
int arg2) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
popBack
public Result popBack(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
popBack
public Object popBack()
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)
pushBack
public Result pushBack(Object arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
pushBack
public void pushBack(Object arg1)
insert
public Result insert(ArrayIterator arg1,
Object arg2,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
insert
public ArrayIterator insert(ArrayIterator arg1,
Object arg2) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
insert
public Result insert(int arg1,
Object arg2,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
insert
public void insert(int arg1,
Object arg2) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
insert
public Result insert(ArrayIterator arg1,
int arg2,
Object arg3,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
insert
public void insert(ArrayIterator arg1,
int arg2,
Object arg3) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
insert
public Result insert(int arg1,
int arg2,
Object arg3,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
insert
public void insert(int arg1,
int arg2,
Object arg3) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
insert
public Result insert(ArrayIterator arg1,
ForwardIterator arg2,
ForwardIterator arg3,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
insert
public void insert(ArrayIterator arg1,
ForwardIterator arg2,
ForwardIterator arg3) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
insert
public Result insert(int arg1,
ForwardIterator arg2,
ForwardIterator arg3,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
insert
public void insert(int arg1,
ForwardIterator arg2,
ForwardIterator arg3) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
swap
public Result swap(Array arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
swap
public void swap(Array arg1) 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()
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()
begin
public Result begin(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
begin
public ArrayIterator begin() throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
end
public Result end(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
end
public ArrayIterator end() throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
trimToSize
public Result trimToSize(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
trimToSize
public void trimToSize() throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
ensureCapacity
public Result ensureCapacity(int arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
ensureCapacity
public void ensureCapacity(int arg1) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
popFront
public Result popFront(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
popFront
public Object popFront()
pushFront
public Result pushFront(Object arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
pushFront
public void pushFront(Object arg1)
remove
public Result remove(Object arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
remove
public int remove(Object arg1)
remove
public Result remove(Object arg1,
int arg2,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
remove
public int remove(Object arg1,
int arg2)
remove
public Result remove(int arg1,
int arg2,
Object arg3,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
remove
public int remove(int arg1,
int arg2,
Object arg3)
replace
public Result replace(Object arg1,
Object arg2,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
replace
public int replace(Object arg1,
Object arg2)
replace
public Result replace(int arg1,
int arg2,
Object arg3,
Object arg4,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
replace
public int replace(int arg1,
int arg2,
Object arg3,
Object arg4)
count
public Result count(Object arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
count
public int count(Object arg1)
count
public Result count(int arg1,
int arg2,
Object arg3,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
count
public int count(int arg1,
int arg2,
Object arg3)
indexOf
public Result indexOf(Object arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
indexOf
public int indexOf(Object arg1)
indexOf
public Result indexOf(int arg1,
int arg2,
Object arg3,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
indexOf
public int indexOf(int arg1,
int arg2,
Object arg3)
setSize
public Result setSize(int arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
setSize
public void setSize(int arg1) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
contains
public Result contains(Object arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
contains
public boolean contains(Object arg1)
All Packages Class Hierarchy This Package Previous Next Index