CharArrayWrapperpublic class CharArrayWrapper extends Object It is a mutable object to wrap the char[] used in
the contents of the XResourceBundle class |
Fields Summary |
---|
private char[] | m_char |
Constructors Summary |
---|
public CharArrayWrapper(char[] arg)
m_char = arg;
|
Methods Summary |
---|
public char | getChar(int index)
return m_char[index];
| public int | getLength()
return m_char.length;
|
|