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