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 javax.xml.registry.JAXRException
javax.xml.registry.JAXRException
- if an internal error occurs.RichText getValue(java.util.Locale locale) throws javax.xml.registry.JAXRException
locale
- The Locale for the desired valuejavax.xml.registry.JAXRException
- if an internal error occurs.void setValue(RichText value) throws javax.xml.registry.JAXRException
value
- the RichText value for the Locale returned by Locale.getDefault()javax.xml.registry.JAXRException
- if an internal error occurs on setting the value.void setValue(java.util.Locale locale, RichText value) throws javax.xml.registry.JAXRException
locale
- The locale for this value being setvalue
- The value being setjavax.xml.registry.JAXRException
- if an internal error occurs on setting the value.void addLocalizedRichText(LocalizedRichText localizedRichText) throws javax.xml.registry.JAXRException
localizedRichText
- the LocalizedRichText to be addedjavax.xml.registry.JAXRException
- if an internal error occurs on adding the localized rich text.void addLocalizedRichTexts(java.util.Collection localizedRichTexts) throws javax.xml.registry.JAXRException
localizedRichTexts
- the Collection of LocalizedRichTexts to be addedjavax.xml.registry.JAXRException
- if an internal error occurs on adding the localized rich texts.void removeLocalizedRichText(LocalizedRichText localizedRichText) throws javax.xml.registry.JAXRException
localizedRichText
- the LocalizedRichText to be removedjavax.xml.registry.JAXRException
- if an internal error occurs on removing the localized rich text.void removeLocalizedRichTexts(java.util.Collection localizedRichTexts) throws javax.xml.registry.JAXRException
localizedRichTexts
- the Collection of LocalizedRichTexts to be removedjavax.xml.registry.JAXRException
- if an internal error occurs on removing the localized rich texts.java.util.Collection getLocalizedRichTexts() throws javax.xml.registry.JAXRException
javax.xml.registry.JAXRException
- if an internal error occurs on getting the localized rich texts.