コード例 #1
0
 /**
  * Sets the value of the "ID" this key points to
  *
  * @param integer $id
  * @param boolean $markChanged Mark this field as changed?
  */
 public function setIDValue($id, $markChanged = true)
 {
     parent::setValue($id);
     if ($markChanged) {
         $this->isChanged = true;
     }
 }