return false;
if (getClass() != obj.getClass())
return false;
final PartContentDescriptor other = (PartContentDescriptor) obj;
if (path == null) {
if (other.path() != null)
return false;
} else if (!path.equals(other.path()))
return false;
return true;
}