return true;
}
if (!(obj instanceof SWRLDataPropertyAtom)) {
return false;
}
SWRLDataPropertyAtom other = (SWRLDataPropertyAtom) obj;
return other.getPredicate().equals(getPredicate())
&& other.getFirstArgument().equals(getFirstArgument())
&& other.getSecondArgument().equals(getSecondArgument());
}