Searched defs:compareTo (Results 1 - 14 of 14) sorted by relevance

/opengrok/src/org/opensolaris/opengrok/history/
H A DBazaarTagEntry.java38 public int compareTo(HistoryEntry that) { method in class:BazaarTagEntry
40 return ((Integer) this.revision).compareTo(Integer.parseInt(that.getRevision()));
H A DGitTagEntry.java43 public int compareTo(HistoryEntry that) { method in class:GitTagEntry
45 return this.date.compareTo(that.getDate());
H A DMercurialTagEntry.java38 public int compareTo(HistoryEntry that) { method in class:MercurialTagEntry
42 return ((Integer) this.revision).compareTo(Integer.parseInt(revs[0]));
H A DTagEntry.java94 public int compareTo(Object aThat) { method in class:TagEntry
102 return ((Integer) this.revision).compareTo(that.revision);
105 return this.date.compareTo(that.date);
140 public abstract int compareTo(HistoryEntry aThat); method in class:TagEntry
/opengrok/test/org/opensolaris/opengrok/web/
H A DDirectoryListingTest.java90 public int compareTo(Object o) { method in class:DirectoryListingTest.FileEntry
95 return name.compareTo(fe.name);
215 if (entries[ii] != null && entries[ii].compareTo(entry) == 0) {
/opengrok/src/org/opensolaris/opengrok/search/
H A DHit.java180 * @return the result of a toString().compareTo() of the filename
183 public int compareTo(Hit o) throws ClassCastException { method in class:Hit
184 return filename.compareTo(o.filename);
238 * to match the return value of the {@link #compareTo(Hit)} method.
245 return compareTo((Hit) o) == 0;
/opengrok/src/org/opensolaris/opengrok/analysis/
H A DScopes.java75 public int compareTo(Scope o) { method in class:Scopes.Scope
/opengrok/src/org/opensolaris/opengrok/configuration/
H A DProject.java227 public int compareTo(Project p2) { method in class:Project
228 return getDescription().toUpperCase(Locale.getDefault()).compareTo(p2.getDescription().toUpperCase(Locale.getDefault()));
H A DGroup.java158 public int compareTo(Group o) { method in class:Group
160 .compareTo(o.getName().toUpperCase(Locale.getDefault()));
/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DVersion.java241 public int compareTo(Object other) method in class:Version
329 return compareTo((Version) o) == 0;
H A DNode.java197 public int compareTo(Object other) method in class:Node
209 return version.compareTo(((Node) other).version);
/opengrok/src/org/opensolaris/opengrok/configuration/messages/
H A DMessage.java187 public int compareTo(Message m) { method in class:Message
189 if (created != null && (i = getCreated().compareTo(m.getCreated())) != 0) {
192 if (text != null && (i = getText().compareTo(m.getText())) != 0) {
195 if (expiration != null && (i = getExpiration().compareTo(m.getExpiration())) != 0) {
/opengrok/lib/
H A Dswing-layout-0.9.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/jdesktop/ org/jdesktop/layout/ org/jdesktop/layout/AquaBaseline ...
H A Dbcel-6.0.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...

Completed in 35 milliseconds