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

CharArrayWrapper

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

Fields Summary
private char[]
m_char
Constructors Summary
public CharArrayWrapper(char[] arg)

        m_char = arg;
    
Methods Summary
public chargetChar(int index)

        return m_char[index];
    
public intgetLength()

        return m_char.length;