Searched refs:otherObject (Results 1 - 2 of 2) sorted by relevance

/external/nist-sip/java/gov/nist/core/
H A DDuplicateNameValueList.java119 * @param otherObject is the object to compare to.
122 public boolean equals(Object otherObject) { argument
123 if ( otherObject == null ) {
126 if (!otherObject.getClass().equals(this.getClass())) {
129 DuplicateNameValueList other = (DuplicateNameValueList) otherObject;
H A DNameValueList.java139 * @param otherObject
143 public boolean equals(Object otherObject) { argument
144 if ( otherObject == null ) {
147 if (!otherObject.getClass().equals(this.getClass())) {
150 NameValueList other = (NameValueList) otherObject;

Completed in 107 milliseconds