public interface Mutable
| Modifier and Type | Method and Description |
|---|---|
void |
set(java.lang.String attributeName,
java.lang.Object attributeValue)
Injects a value
attributeValue into an attribute named attributeName |
default void |
set(java.lang.String attributeName,
java.lang.Object attributeValue,
java.util.Locale locale)
Injects a value
attributeValue into an attribute named attributeName, using Locale locale.Default behaviour is : ignore locale parameter, do simple set(attributeName, attributeValue) mutation. |
void set(java.lang.String attributeName,
java.lang.Object attributeValue)
throws EcmException
attributeValue into an attribute named attributeNameattributeName - The name of an attribute whose value should be changedattributeValue - New value of an attributeEcmException - If something goes wrongdefault void set(java.lang.String attributeName,
java.lang.Object attributeValue,
java.util.Locale locale)
throws EcmException
attributeValue into an attribute named attributeName, using Locale locale.locale parameter, do simple set(attributeName, attributeValue) mutation.attributeName - The name of an attribute whose value should be changedattributeValue - New value of an attributelocale - Locale that (can) influence the way of an attribute mutation.EcmException - If something goes wrong