Пример #1
0
 /** Reset all properties (value, remarks and symbol) */
 public void clear() {
   this.value = null;
   this.remarks = null;
   this.symbol = null;
   attribute.onUpdateValue();
 }
Пример #2
0
 public void setValue(T value) {
   this.value = value;
   this.symbol = null;
   attribute.onUpdateValue();
 }
Пример #3
0
 public void setValueFromString(String s) {
   this.value = parseValue(s);
   attribute.onUpdateValue();
 }