コード例 #1
0
ファイル: TypedData.php プロジェクト: anatalsceo/en-classe
 /**
  * {@inheritdoc}
  */
 public function setValue($value, $notify = TRUE)
 {
     $this->value = $value;
     // Notify the parent of any changes.
     if ($notify && isset($this->parent)) {
         $this->parent->onChange($this->name);
     }
 }