public interface LocalizedString
LocalizedString
.Modifier and Type | Method and Description |
---|---|
java.lang.String |
getCharsetName()
Gets the canonical name for the char-set for this object.
|
java.util.Locale |
getLocale()
Gets the Locale for this object.
|
java.lang.String |
getValue()
Gets the String value for this object.
|
void |
setCharsetName(java.lang.String charsetName)
Sets the canonical name for the char-set for this object.
|
void |
setLocale(java.util.Locale locale)
Set the Locale for this object.
|
void |
setValue(java.lang.String value)
Sets the String value for the specified object.
|
java.lang.String getCharsetName() throws CSAppFrameworkException
CSAppFrameworkException
- if an internal error occurs on getting the char-set name.void setCharsetName(java.lang.String charsetName) throws CSAppFrameworkException
charsetName
- the canonical name for the char-set.CSAppFrameworkException
- if an internal error occurs on setting the char-set name.java.util.Locale getLocale() throws CSAppFrameworkException
CSAppFrameworkException
- if an internal error occurs on getting the locale.void setLocale(java.util.Locale locale) throws CSAppFrameworkException
locale
- the current locale.CSAppFrameworkException
- if an internal error occurs on getting the locale.java.lang.String getValue() throws CSAppFrameworkException
CSAppFrameworkException
- if an internal error occurs.void setValue(java.lang.String value) throws CSAppFrameworkException
value
- the String value for this object.CSAppFrameworkException
- n internal error occurs.