2016-05-16 17:09:11 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class PhabricatorSearchResultBucketGroup
|
|
|
|
extends Phobject {
|
|
|
|
|
|
|
|
private $name;
|
2016-05-19 22:28:21 +02:00
|
|
|
private $key;
|
2016-05-16 17:09:11 +02:00
|
|
|
private $noDataString;
|
|
|
|
private $objects;
|
|
|
|
|
|
|
|
public function setNoDataString($no_data_string) {
|
|
|
|
$this->noDataString = $no_data_string;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getNoDataString() {
|
|
|
|
return $this->noDataString;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setName($name) {
|
|
|
|
$this->name = $name;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getName() {
|
|
|
|
return $this->name;
|
|
|
|
}
|
|
|
|
|
2016-05-19 22:28:21 +02:00
|
|
|
public function setKey($key) {
|
|
|
|
$this->key = $key;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getKey() {
|
|
|
|
return $this->key;
|
|
|
|
}
|
|
|
|
|
2016-05-16 17:09:11 +02:00
|
|
|
public function setObjects(array $objects) {
|
|
|
|
$this->objects = $objects;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getObjects() {
|
|
|
|
return $this->objects;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|