/**
  * Constructor
  *
  * @param Tracker_FormElement_Field_ArtifactLink $field        The field of the value
  * @param boolean                                $has_changed  If the changeset value has chnged from the previous one
  * @param array                                  $artifact_links array of artifact_id => Tracker_ArtifactLinkInfo
  * @param array                                  $reverse_artifact_links array of artifact_id => Tracker_ArtifactLinkInfo
  */
 public function __construct($id, $field, $has_changed, $artifact_links, $reverse_artifact_links)
 {
     parent::__construct($id, $field, $has_changed);
     $this->artifact_links = $artifact_links;
     $this->reverse_artifact_links = $reverse_artifact_links;
     $this->user_manager = UserManager::instance();
 }
 /**
  * Constructor
  *
  * @param Tracker_FormElement_Field_Numeric $field       The field of the value
  * @param boolean                           $has_changed If the changeset value has chnged from the previous one
  * @param numeric                           $numeric     The numeric
  */
 public function __construct($id, $field, $has_changed, $numeric)
 {
     parent::__construct($id, $field, $has_changed);
     $this->numeric = $numeric;
 }
 /**
  * Constructor
  *
  * @param Tracker_FormElement_Field_Date $field       The field of the value
  * @param boolean                        $has_changed If the changeset value has chnged from the previous one
  * @param array                          $perms   The permissions
  */
 public function __construct($id, $field, $has_changed, $used, $perms)
 {
     parent::__construct($id, $field, $has_changed);
     $this->perms = $perms;
     $this->used = $used;
 }
 /**
  * Constructor
  *
  * @param Tracker_FormElement_Field_Date $field       The field of the value
  * @param boolean                        $has_changed If the changeset value has chnged from the previous one
  * @param int                            $timestamp   The date
  */
 public function __construct($id, $field, $has_changed, $timestamp)
 {
     parent::__construct($id, $field, $has_changed);
     $this->timestamp = $timestamp;
 }
 /**
  * Constructor
  *
  * @param Tracker_FormElement_Field_ArtifactLink $field        The field of the value
  * @param boolean                                $has_changed  If the changeset value has chnged from the previous one
  * @param array                                  $artifact_links array of artifact_id => Tracker_ArtifactLinkInfo
  */
 public function __construct($id, $field, $has_changed, $artifact_links)
 {
     parent::__construct($id, $field, $has_changed);
     $this->artifact_links = $artifact_links;
 }
 /**
  * Constructor
  *
  * @param Tracker_FormElement_Field_String $field       The field of the value
  * @param boolean                          $has_changed If the changeset value has chnged from the previous one
  * @param string                           $text        The string
  * @param string                           $format      The format
  */
 public function __construct($id, $field, $has_changed, $text, $format)
 {
     parent::__construct($id, $field, $has_changed);
     $this->text = $text;
     $this->format = $format;
 }
 /**
  * Constructor
  *
  * @param Tracker_FormElement_Field_File $field       The field of the value
  * @param boolean                        $has_changed If the changeset value has chnged from the previous one
  * @param array                          $files       array of Tracker_FileInfo
  */
 public function __construct($id, $field, $has_changed, $files)
 {
     parent::__construct($id, $field, $has_changed);
     $this->files = $files;
 }
 /**
  * Constructor
  *
  * @param Tracker_FormElement_Field_String $field       The field of the value
  * @param boolean                          $has_changed If the changeset value has chnged from the previous one
  * @param array                            $list_values The list of values
  */
 public function __construct($id, $field, $has_changed, $list_values)
 {
     parent::__construct($id, $field, $has_changed);
     $this->list_values = $list_values;
 }