public interface InternationalRichText
LocalizedRichText
Modifier and Type | Method and Description |
---|---|
void |
addLocalizedRichText(LocalizedRichText localizedRichText)
Adds a LocalizedRichText to this object.
|
void |
addLocalizedRichTexts(java.util.Collection localizedRichTexts)
Add a collection of LocalizedRichTexts.
|
java.util.Collection |
getLocalizedRichTexts()
Returns the LocalizedRichTexts associated with this object.
|
RichText |
getValue()
Get the RichText value for the Locale returned by Locale.getDefault().
|
RichText |
getValue(java.util.Locale locale)
Get the RichText value for the specified Locale.
|
void |
removeLocalizedRichText(LocalizedRichText localizedRichText)
Removes a LocalizedRichText from this object.
|
void |
removeLocalizedRichTexts(java.util.Collection localizedRichTexts)
Removes specified LocalizedRichTexts from this object.
|
void |
setValue(java.util.Locale locale,
RichText value)
Set the RichText value for the specified Locale.
|
void |
setValue(RichText value)
Set the RichText value for the Locale returned by Locale.getDefault().
|
RichText getValue() throws JAXRException
JAXRException
- if an internal error occurs.RichText getValue(java.util.Locale locale) throws JAXRException
locale
- The Locale for the desired valueJAXRException
- if an internal error occurs.void setValue(RichText value) throws JAXRException
value
- the RichText value for the Locale returned by Locale.getDefault()JAXRException
- if an internal error occurs on setting the value.void setValue(java.util.Locale locale, RichText value) throws JAXRException
locale
- The locale for this value being setvalue
- The value being setJAXRException
- if an internal error occurs on setting the value.void addLocalizedRichText(LocalizedRichText localizedRichText) throws JAXRException
localizedRichText
- the LocalizedRichText to be addedJAXRException
- if an internal error occurs on adding the localized rich text.void addLocalizedRichTexts(java.util.Collection localizedRichTexts) throws JAXRException
localizedRichTexts
- the Collection of LocalizedRichTexts to be addedJAXRException
- if an internal error occurs on adding the localized rich texts.void removeLocalizedRichText(LocalizedRichText localizedRichText) throws JAXRException
localizedRichText
- the LocalizedRichText to be removedJAXRException
- if an internal error occurs on removing the localized rich text.void removeLocalizedRichTexts(java.util.Collection localizedRichTexts) throws JAXRException
localizedRichTexts
- the Collection of LocalizedRichTexts to be removedJAXRException
- if an internal error occurs on removing the localized rich texts.java.util.Collection getLocalizedRichTexts() throws JAXRException
JAXRException
- if an internal error occurs on getting the localized rich texts.