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

StringArrayWrapper

public class StringArrayWrapper extends Object
It is a mutable object to wrap the String[] used in the contents of the XResourceBundle class

Fields Summary
private String[]
m_string
Constructors Summary
public StringArrayWrapper(String[] arg)

        m_string = arg;
    
Methods Summary
public intgetLength()

        return m_string.length;
    
public java.lang.StringgetString(int index)

        return m_string[index];