The following document contains the results of PMD's CPD 4.2.5.
| File | Line |
|---|---|
| net/sourceforge/wurfl/wng/component/Text.java | 48 |
| net/sourceforge/wurfl/wng/component/Title.java | 67 |
Title other = (Title) obj;
builder.appendSuper(super.equals(obj));
builder.append(content, other.content);
}
else {
builder.appendSuper(false);
}
return builder.isEquals();
}
public int hashCode() {
HashCodeBuilder builder = new HashCodeBuilder();
builder.appendSuper(super.hashCode());
builder.append(content);
return builder.toHashCode();
}
public String toString() {
ToStringBuilder builder = new ToStringBuilder(this);
builder.appendSuper(super.toString());
builder.append(content);
return builder.toString();
}
} | |