FileDocCategorySizeDatePackage
LongArrayWrapper.javaAPI DocJava SE 6 API1150Tue Jun 10 00:23:12 BST 2008com.sun.org.apache.xml.internal.utils.res

LongArrayWrapper

public 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 intgetLength()

        return m_long.length;
    
public longgetLong(int index)

        return m_long[index];