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.


Variable Index

 o v

Constructor Index

 o StringArray()

Method Index

 o getSize()
The size of the array
 o getString()
The string representation of the array
 o getString(int)
Retrieve a strnig from a specific location
 o setSize(int)
The size of the array
 o setString(int, String)
The string at a specific location in the array
 o setString(String[])
Initialize the array with these values

Variables

 o v
protected Vector v

Constructors

 o StringArray
public StringArray()

Methods

 o getSize
public int getSize()
The size of the array

 o setSize
public void setSize(int s)
The size of the array

 o getString
public String[] getString()
The string representation of the array

 o setString
public void setString(String[] a)
Initialize the array with these values

 o getString
public String getString(int i) throws ArrayIndexOutOfBoundsException
Retrieve a strnig from a specific location

 o 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