Searched defs:other (Results 1 - 5 of 5) sorted by relevance

/opengrok-jel/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DLine.java18 * the documentation and/or other materials provided with the
85 public boolean equals(Object other) argument
87 if (this == other)
91 else if (!(other instanceof Line))
97 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
240 * @param other The version to compare to
245 public int compareTo(Object other) argument
247 if (other == this)
251 else if (!(other instanceof Version))
253 throw new IllegalArgumentException(other.toString());
256 Version otherVer = (Version) other;
H A DNode.java18 * the documentation and/or other materials provided with the
147 * @param other The node to copy.
149 protected Node(Node other) argument
151 this(other.version, null);
152 this.date = other.date;
153 this.author = other.author;
154 this.state = other.state;
155 this.log = other.log;
156 this.locker = other.locker;
206 * @param other Th
211 compareTo(Object other) argument
[all...]
/opengrok-jel/lib/
H A Dbcel-5.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...

Completed in 17 milliseconds