Searched refs:working (Results 1 - 13 of 13) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DRepositoryInfo.java40 /** indicate, whether the related CLI command is working. {@code null} means
45 protected Boolean working; field in class:RepositoryInfo
68 this.working = Boolean.valueOf(orig.isWorking());
97 return working != null && working.booleanValue();
101 * Set the property working
103 * @param working
105 public void setWorking(Boolean working) { argument
106 this.working = working;
[all...]
H A DSCCSRepository.java252 if (working == null) {
254 working = checkCmd(cmd, "help", "help");
255 if (!working.booleanValue()) {
256 working = checkCmd(cmd, "--version");
259 return working.booleanValue();
H A DAccuRevRepository.java318 if (working == null) {
319 working = checkCmd(cmd, "info");
321 return working.booleanValue();
H A DBazaarRepository.java274 if (working == null) {
276 working = checkCmd(cmd, "--help");
278 return working.booleanValue();
H A DCVSRepository.java71 if (working == null) {
73 working = checkCmd(cmd , "--version");
75 return working.booleanValue();
H A DMonotoneRepository.java260 if (working == null) {
262 working = checkCmd(cmd, "--help");
264 return working.booleanValue();
H A DPerforceRepository.java216 if (working == null) {
218 working = checkCmd(cmd, "help");
220 return working.booleanValue();
H A DClearCaseRepository.java340 if (working == null) {
342 working = checkCmd(cmd, "–version");
344 return working.booleanValue();
H A DSubversionRepository.java438 if (working == null) {
443 working = checkCmd(cmd, "--help", configDir);
445 working = checkCmd(cmd, "--help");
448 return working.booleanValue();
H A DMercurialRepository.java525 if (working == null) {
527 working = checkCmd(cmd);
529 return working.booleanValue();
H A DRCSRepository.java52 working = Boolean.TRUE;
H A DGitRepository.java550 if (working == null) {
552 working = checkCmd(cmd, "--help");
554 return working.booleanValue();
H A DRazorRepository.java151 working = Boolean.TRUE;

Completed in 20 milliseconds