Searched defs:other (Results 1 - 5 of 5) 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 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;
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...]
/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 26 milliseconds