package com.perforce.spark.search;
public class ResultFile {
private int time;
private String type;
private String action;
private String depotFile;
private int rev;
private int change;
public int getTime() {
return time;
}
public String getType() {
return type;
}
public String getAction() {
return action;
}
public String getDepotFile() {
return depotFile;
}
public int getRev() {
return rev;
}
public int getChange() {
return change;
}
public void setTime(int time) {
this.time = time;
}
public void setType(String type) {
this.type = type;
}
public void setAction(String action) {
this.action = action;
}
public void setDepotFile(String depotFile) {
this.depotFile = depotFile;
}
public void setRev(int rev) {
this.rev = rev;
}
public void setChange(int change) {
this.change = change;
}
@Override
public String toString() {
StringBuffer sb = new StringBuffer();
sb.append(depotFile + "#" + rev);
return sb.toString();
}
}
# |
Change |
User |
Description |
Committed |
|
#1
|
15139 |
Paul Allen |
Extend p4search options. |
|
|
//guest/paul_allen/p4am/src/main/java/com/perforce/spark/search/SearchResult.java |
#1
|
15118 |
Paul Allen |
Added P4Search |
|
|