Changeset View
Changeset View
Standalone View
Standalone View
src/browse/ref/ArcanistBrowseURIRefPro.php
- This file was added.
| <?php | |||||
| final class ArcanistBrowseURIRefPro | |||||
| extends ArcanistRefPro { | |||||
| private $uri; | |||||
| private $type; | |||||
| public function getRefDisplayName() { | |||||
| return pht('Browse URI "%s"', $this->getURI()); | |||||
| } | |||||
| public function defineHardpoints() { | |||||
| return array(); | |||||
| } | |||||
| public function setURI($uri) { | |||||
| $this->uri = $uri; | |||||
| return $this; | |||||
| } | |||||
| public function getURI() { | |||||
| return $this->uri; | |||||
| } | |||||
| public function setType($type) { | |||||
| $this->type = $type; | |||||
| return $this; | |||||
| } | |||||
| public function getType() { | |||||
| return $this->type; | |||||
| } | |||||
| } | |||||