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

IntArrayWrapper

public 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 intgetInt(int index)

        return m_int[index];
    
public intgetLength()

        return m_int.length;