Searched defs:ver (Results 1 - 2 of 2) sorted by relevance

/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/tools/
H A DJRCS.java129 static void trywith(String ver) argument
135 System.out.println("Adding " + ver);
147 Version newVer = archive.addRevision(rev, ver);
170 System.out.println(ver + " OK");
/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DVersion.java201 * @param ver the version to compare to.
202 * @return 0 if this == ver, 1 if this greater than ver, -1 otherwise.
204 public int compareVersions(Version ver) argument
207 int[] nthat = ver.numbers;
266 * @param ver the version to compare to.
267 * @return true if compareVersions(ver) > 0
270 public boolean isGreaterThan(Version ver) argument
272 return compareVersions(ver) > 0;
277 * @param ver th
281 isGreaterOrEqualThan(Version ver) argument
292 isLessThan(Version ver) argument
303 isLessOrEqualThan(Version ver) argument
[all...]

Completed in 596 milliseconds