3 final class PhabricatorRepositoryParsedChange
extends Phobject
{
7 private $targetCommitID;
11 private $commitSequence;
13 public function setPathID($path_id) {
14 $this->pathID
= $path_id;
18 public function getPathID() {
22 public function setCommitSequence($commit_sequence) {
23 $this->commitSequence
= $commit_sequence;
27 public function getCommitSequence() {
28 return $this->commitSequence
;
31 public function setIsDirect($is_direct) {
32 $this->isDirect
= $is_direct;
36 public function getIsDirect() {
37 return $this->isDirect
;
40 public function setFileType($file_type) {
41 $this->fileType
= $file_type;
45 public function getFileType() {
46 return $this->fileType
;
49 public function setChangeType($change_type) {
50 $this->changeType
= $change_type;
54 public function getChangeType() {
55 return $this->changeType
;
58 public function setTargetCommitID($target_commit_id) {
59 $this->targetCommitID
= $target_commit_id;
63 public function getTargetCommitID() {
64 return $this->targetCommitID
;
68 public function setTargetPathID($target_path_id) {
69 $this->targetPathID
= $target_path_id;
73 public function getTargetPathID() {
74 return $this->targetPathID
;