CPD Results

The following document contains the results of PMD's CPD 4.2.5.

Duplications

FileLine
net/sourceforge/wurfl/wng/component/Text.java48
net/sourceforge/wurfl/wng/component/Title.java67
			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();
	}


}