StringArrayWrapperpublic class StringArrayWrapper extends Object It is a mutable object to wrap the String[] used in
the contents of the XResourceBundle class |
Fields Summary |
---|
private String[] | m_string |
Constructors Summary |
---|
public StringArrayWrapper(String[] arg)
m_string = arg;
|
Methods Summary |
---|
public int | getLength()
return m_string.length;
| public java.lang.String | getString(int index)
return m_string[index];
|
|