1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
package tim.prune.function.filesleuth;
import tim.prune.function.filesleuth.data.TrackFile;
import tim.prune.function.filesleuth.data.TrackFileStatus;
public class SearchResult
{
private final TrackFile _trackFile;
private TrackFileStatus _statusWhenChecked;
private boolean _match = false;
private boolean _needsRecheck = true;
private String _contents = "";
public SearchResult(TrackFile inTrackFile)
{
_trackFile = inTrackFile;
_statusWhenChecked = inTrackFile.getStatus();
}
public TrackFile getTrackFile() {
return _trackFile;
}
public String getFilename() {
return _trackFile.getFile().getName();
}
public TrackFileStatus getFileStatusWhenChecked() {
return _statusWhenChecked;
}
public void setContents(String inString) {
_contents = (inString == null ? "" : inString.trim());
}
public String getContents() {
return _contents;
}
public void setIsMatch(boolean isMatch) {
_match = isMatch;
_needsRecheck = false;
}
public boolean isMatch() {
return _match;
}
public void setNeedsRecheck() {
_needsRecheck = true;
}
public boolean needsRecheck() {
return _needsRecheck;
}
}
|