Added hashcode & equals based on digest. Added simple toString.

This commit is contained in:
Kevin Ruland 2012-02-03 01:37:25 +00:00
parent 235cc29676
commit a728036bf1

View File

@ -107,6 +107,36 @@ public class ThrustCurveMotorPlaceholder implements Motor {
public double getTotalImpulseEstimate() {
return Double.NaN;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((digest == null) ? 0 : digest.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
ThrustCurveMotorPlaceholder other = (ThrustCurveMotorPlaceholder) obj;
if (digest == null) {
if (other.digest != null)
return false;
} else if (!digest.equals(other.digest))
return false;
return true;
}
@Override
public String toString() {
return "ThrustCurveMotorPlaceholder [manufacturer=" + manufacturer
+ ", designation=" + designation + "]";
}
}