in taverna-provenanceconnector/src/main/java/org/apache/taverna/provenance/lineageservice/utils/DataBinding.java [64:83]
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
DataBinding other = (DataBinding) obj;
if (dataBindingId == null) {
if (other.dataBindingId != null)
return false;
} else if (!dataBindingId.equals(other.dataBindingId))
return false;
if (port == null) {
if (other.port != null)
return false;
} else if (!port.equals(other.port))
return false;
return true;
}