[ Index ] |
PHP Cross Reference of Phabricator |
[Summary view] [Print] [Text view]
1 <?php 2 3 final class HeraldConditionTranscript { 4 5 protected $ruleID; 6 protected $conditionID; 7 protected $fieldName; 8 protected $condition; 9 protected $testValue; 10 protected $note; 11 protected $result; 12 13 public function setRuleID($rule_id) { 14 $this->ruleID = $rule_id; 15 return $this; 16 } 17 18 public function getRuleID() { 19 return $this->ruleID; 20 } 21 22 public function setConditionID($condition_id) { 23 $this->conditionID = $condition_id; 24 return $this; 25 } 26 27 public function getConditionID() { 28 return $this->conditionID; 29 } 30 31 public function setFieldName($field_name) { 32 $this->fieldName = $field_name; 33 return $this; 34 } 35 36 public function getFieldName() { 37 return $this->fieldName; 38 } 39 40 public function setCondition($condition) { 41 $this->condition = $condition; 42 return $this; 43 } 44 45 public function getCondition() { 46 return $this->condition; 47 } 48 49 public function setTestValue($test_value) { 50 $this->testValue = $test_value; 51 return $this; 52 } 53 54 public function getTestValue() { 55 return $this->testValue; 56 } 57 58 public function setNote($note) { 59 $this->note = $note; 60 return $this; 61 } 62 63 public function getNote() { 64 return $this->note; 65 } 66 67 public function setResult($result) { 68 $this->result = $result; 69 return $this; 70 } 71 72 public function getResult() { 73 return $this->result; 74 } 75 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Sun Nov 30 09:20:46 2014 | Cross-referenced by PHPXref 0.7.1 |