public interface Property
This object represents custom properties and
query script properties.
A property is made of a {key,value} pair.
The following features are supported:
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getKey()
Returns the value of the 'Key' attribute.
|
java.lang.String |
getValue()
Returns the value of the 'Value' attribute.
|
void |
setKey(java.lang.String value)
Sets the value of the '
Key' attribute. |
void |
setValue(java.lang.String value)
Sets the value of the '
Value' attribute. |
java.lang.String getKey()
This string represents the key of the property.
setKey(String)void setKey(java.lang.String value)
Key' attribute.
This string represents the key of the property.
value - the new value of the 'Key' attribute.getKey()java.lang.String getValue()
This string represents the value of the property.
setValue(String)void setValue(java.lang.String value)
Value' attribute.
This string represents the value of the property.
value - the new value of the 'Value' attribute.getValue()