public interface MutablePropertyData<T> extends PropertyData<T>
Modifier and Type | Method and Description |
---|---|
void |
setDisplayName(String displayName)
Set the display name.
|
void |
setId(String id)
Sets the property ID.
|
void |
setLocalName(String localName)
Set the local name.
|
void |
setQueryName(String queryName)
Set the query name.
|
void |
setValue(T value)
Sets a property value.
|
void |
setValues(List<T> values)
Sets the property value.
|
getDisplayName, getFirstValue, getId, getLocalName, getQueryName, getValues
getExtensions, setExtensions
void setId(String id)
id
- the property ID, should not be null
void setDisplayName(String displayName)
displayName
- the display namevoid setLocalName(String localName)
localName
- the local namevoid setQueryName(String queryName)
queryName
- the query namevoid setValues(List<T> values)
If this property is a single value property, this list must either be
empty or null
(= unset) or must only contain one entry.
values
- the property value or null
to unset the propertyvoid setValue(T value)
If this property is a multi value property, this value becomes the only value in the list of values.
value
- the property value or null
to unset the propertyCopyright © 2009–2017 The Apache Software Foundation. All rights reserved.