Differential D17132 Diff 41201 src/applications/transactions/commentaction/PhabricatorEditEngineCommentAction.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/transactions/commentaction/PhabricatorEditEngineCommentAction.php
| <?php | <?php | ||||
| abstract class PhabricatorEditEngineCommentAction extends Phobject { | abstract class PhabricatorEditEngineCommentAction extends Phobject { | ||||
| private $key; | private $key; | ||||
| private $label; | private $label; | ||||
| private $value; | private $value; | ||||
| private $initialValue; | private $initialValue; | ||||
| private $order; | private $order; | ||||
| private $groupKey; | private $groupKey; | ||||
| private $conflictKey; | |||||
| abstract public function getPHUIXControlType(); | abstract public function getPHUIXControlType(); | ||||
| abstract public function getPHUIXControlSpecification(); | abstract public function getPHUIXControlSpecification(); | ||||
| public function setKey($key) { | public function setKey($key) { | ||||
| $this->key = $key; | $this->key = $key; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getKey() { | public function getKey() { | ||||
| return $this->key; | return $this->key; | ||||
| } | } | ||||
| public function setGroupKey($group_key) { | public function setGroupKey($group_key) { | ||||
| $this->groupKey = $group_key; | $this->groupKey = $group_key; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getGroupKey() { | public function getGroupKey() { | ||||
| return $this->groupKey; | return $this->groupKey; | ||||
| } | } | ||||
| public function setConflictKey($conflict_key) { | |||||
| $this->conflictKey = $conflict_key; | |||||
| return $this; | |||||
| } | |||||
| public function getConflictKey() { | |||||
| return $this->conflictKey; | |||||
| } | |||||
| public function setLabel($label) { | public function setLabel($label) { | ||||
| $this->label = $label; | $this->label = $label; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getLabel() { | public function getLabel() { | ||||
| return $this->label; | return $this->label; | ||||
| } | } | ||||
| Show All 34 Lines | |||||