25 private $operator = null;
70 return $this->operator;
79 $this->seqNodeId = $a_seqnodeid;
89 $this->referencedObjective = $a_objective;
94 $this->condition = $a_condition;
99 $this->measureThreshold = $a_measure;
104 $this->
operator = $a_operator;
111 public function insert($a_insert_node =
false)
113 if ($a_insert_node==
true) {$this->
setSeqNodeId(parent::insert());}
114 $sql =
"INSERT INTO sahs_sc13_seq_cond (seqnodeid,referencedobjective,cond,measurethreshold,operator)".
116 $this->db->quote($this->seqNodeId,
"integer").
",".
117 $this->db->quote($this->referencedObjective,
"text").
",".
118 $this->db->quote($this->condition,
"text").
",".
119 $this->db->quote($this->measureThreshold,
"text").
",".
120 $this->db->quote($this->
operator,
"text").
");";
121 $result = $this->db->manipulate($sql);