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