FileDocCategorySizeDatePackage
LocaleCharsetInfo.javaAPI DocGlassfish v2 API4445Fri May 04 22:31:54 BST 2007com.sun.enterprise.deployment.runtime.web

LocaleCharsetInfo

public class LocaleCharsetInfo extends com.sun.enterprise.deployment.runtime.RuntimeDescriptor
this class contains runtime information for the web bundle it was kept to be backward compatible with the schema2beans descriptors generated by iAS 7.0 engineering team.
author
Jerome Dochez

Fields Summary
public static final String
LOCALE_CHARSET_MAP
public static final String
PARAMETER_ENCODING
public static final String
FORM_HINT_FIELD
public static final String
DEFAULT_LOCALE
public static final String
DEFAULT_CHARSET
Constructors Summary
Methods Summary
public intaddLocaleCharsetMap(LocaleCharsetMap value)

	return this.addValue(LOCALE_CHARSET_MAP, value);
    
public LocaleCharsetMapgetLocaleCharsetMap(int index)

	return (LocaleCharsetMap)this.getValue(LOCALE_CHARSET_MAP, index);
    
public LocaleCharsetMap[]getLocaleCharsetMap()

	return (LocaleCharsetMap[])this.getValues(LOCALE_CHARSET_MAP);
    
public booleanisParameterEncoding()

	Boolean ret = (Boolean)this.getValue(PARAMETER_ENCODING);
	if (ret == null) {
	    return false;
	}
	return ret.booleanValue();
    
public intremoveLocaleCharsetMap(LocaleCharsetMap value)

	return this.removeValue(LOCALE_CHARSET_MAP, value);
    
public voidsetLocaleCharsetMap(int index, LocaleCharsetMap value)

    
    // This attribute is an array containing at least one element
         
    
	this.setValue(LOCALE_CHARSET_MAP, index, value);
    
public voidsetLocaleCharsetMap(LocaleCharsetMap[] value)

	this.setValue(LOCALE_CHARSET_MAP, value);
    
public voidsetParameterEncoding(boolean value)

	this.setValue(PARAMETER_ENCODING, Boolean.valueOf(value));
    
public intsizeLocaleCharsetMap()

	return this.size(LOCALE_CHARSET_MAP);
    
public booleanverify()

	return true;