Add API to get default value of an Attribute

This commit is contained in:
md_5 2016-12-09 12:30:32 +11:00
parent b7a392c072
commit 09ab5b97cb

View file

@ -57,4 +57,11 @@ public interface AttributeInstance {
* @return the total attribute value
*/
double getValue();
/**
* Gets the default value of the Attribute attached to this instance.
*
* @return server default value
*/
double getDefaultValue();
}