All Packages Class Hierarchy This Package Previous Next Index
Class ORG.opengroup.beans.StringArray
java.lang.Object
|
+----ORG.opengroup.beans.StringArray
- public class StringArray
- extends Object
- implements Serializable
This is a simple bean with property string which is an array of String.
v-
StringArray()
-
getSize()
- The size of the array
getString()
- The string representation of the array
getString(int)
- Retrieve a strnig from a specific location
setSize(int)
- The size of the array
setString(int, String)
- The string at a specific location in the array
setString(String[])
- Initialize the array with these values
v
protected Vector v
StringArray
public StringArray()
getSize
public int getSize()
- The size of the array
setSize
public void setSize(int s)
- The size of the array
getString
public String[] getString()
- The string representation of the array
setString
public void setString(String[] a)
- Initialize the array with these values
getString
public String getString(int i) throws ArrayIndexOutOfBoundsException
- Retrieve a strnig from a specific location
setString
public void setString(int i,
String s) throws ArrayIndexOutOfBoundsException
- The string at a specific location in the array
All Packages Class Hierarchy This Package Previous Next Index