Searched refs:other (Results 1 - 9 of 9) sorted by relevance

/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DLine.java18 * the documentation and/or other materials provided with the
83 public boolean equals(Object other) argument
85 if (this == other)
89 else if (!(other instanceof Line))
95 return this.getText().equals(((Line) other).getText());
H A DNode.java18 * the documentation and/or other materials provided with the
132 * @param other The node to copy.
134 protected Node(Node other) argument
136 this(other.version, null);
137 this.date = other.date;
138 this.author = other.author;
139 this.state = other.state;
140 this.log = other.log;
141 this.locker = other.locker;
193 * @param other Th
197 compareTo(Object other) argument
[all...]
H A DTrunkNode.java18 * the documentation and/or other materials provided with the
86 TrunkNode(TrunkNode other) argument
88 super(other);
H A DVersion.java18 * the documentation and/or other materials provided with the
238 * @param other The version to compare to
241 public int compareTo(Object other) argument
243 if (other == this)
247 else if (!(other instanceof Version))
249 throw new IllegalArgumentException(other.toString());
252 Version otherVer = (Version) other;
/opengrok/src/org/opensolaris/opengrok/configuration/
H A DProject.java249 final Project other = (Project) obj;
250 return !(this.description != other.description
252 || !this.description.toUpperCase(Locale.getDefault()).equals(other.description.toUpperCase(Locale.getDefault()))));
H A DGroup.java181 final Group other = (Group) obj;
182 return !(this.name != other.name
184 || !this.name.toUpperCase(Locale.getDefault()).equals(other.name.toUpperCase(Locale.getDefault()))));
/opengrok/src/org/opensolaris/opengrok/configuration/messages/
H A DMessage.java222 final Message other = (Message) obj;
224 if (!Objects.equals(this.created, other.created)) {
227 if (!Objects.equals(this.expiration, other.expiration)) {
230 if (!Objects.equals(this.text, other.text)) {
233 if (!Objects.equals(this.tags, other.tags)) {
/opengrok/src/org/opensolaris/opengrok/index/
H A DIndexDatabase.java1167 final IndexDatabase other = (IndexDatabase) obj;
1168 if (this.project != other.project && (this.project == null || !this.project.equals(other.project))) {
/opengrok/lib/
H A Dbcel-6.0.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...

Completed in 43 milliseconds