String qualifiedName = object.getQualifiedNameWithType() + "." + getName();
return qualifiedName.hashCode();
}
if (parent instanceof DBObjectBundle) {
DBObjectBundle objectBundle = (DBObjectBundle) parent;
String qualifiedName = objectBundle.getConnectionHandler().getName() + "." + getName();
return qualifiedName.hashCode();
}
return super.hashCode();
}