コード例 #1
0
ファイル: NetObject.java プロジェクト: vincent-tr/bouh-mylife
 public void setAttributeValueAsString(String svalue) throws InvalidValueException {
   Object value = convertValue(attribute.getType(), svalue);
   this.value = value;
   for (AttributeChangeListener listener : listeners)
     listener.attributeChanged(owner, attribute, value);
 }
コード例 #2
0
ファイル: NetObject.java プロジェクト: vincent-tr/bouh-mylife
 public void setAttributeValue(Object value) throws InvalidValueException {
   checkValue(attribute.getType(), value);
   this.value = value;
   for (AttributeChangeListener listener : listeners)
     listener.attributeChanged(owner, attribute, value);
 }