Rough cut of Diffusion change view.

This commit is contained in:
epriestley
2011-03-30 17:36:16 -07:00
parent 51a6ce65aa
commit 3d5f03607b
16 changed files with 393 additions and 64 deletions

View File

@@ -26,6 +26,8 @@ final class DiffusionPathChange {
private $changeType;
private $fileType;
private $targetPath;
private $targetCommitIdentifier;
private $awayPaths = array();
final public function setPath($path) {
$this->path = $path;
@@ -63,6 +65,15 @@ final class DiffusionPathChange {
return $this->targetPath;
}
public function setAwayPaths(array $away_paths) {
$this->awayPaths = $away_paths;
return $this;
}
public function getAwayPaths() {
return $this->awayPaths;
}
final public function setCommitIdentifier($commit) {
$this->commitIdentifier = $commit;
return $this;
@@ -115,6 +126,4 @@ final class DiffusionPathChange {
}
}