use of org.jkiss.dbeaver.erd.ui.command.AssociationReconnectTargetCommand in project dbeaver by dbeaver.
the class EntityConnectionEditPolicy method getReconnectTargetCommand.
@Override
protected Command getReconnectTargetCommand(ReconnectRequest request) {
AssociationReconnectTargetCommand cmd = makeReconnectTargetCommand();
cmd.setRelationship((ERDAssociation) request.getConnectionEditPart().getModel());
NodePart entityPart = (NodePart) getHost();
cmd.setTargetEntity(entityPart.getElement());
return cmd;
}
use of org.jkiss.dbeaver.erd.ui.command.AssociationReconnectTargetCommand in project dbeaver by serge-rider.
the class EntityConnectionEditPolicy method getReconnectTargetCommand.
@Override
protected Command getReconnectTargetCommand(ReconnectRequest request) {
AssociationReconnectTargetCommand cmd = makeReconnectTargetCommand();
cmd.setRelationship((ERDAssociation) request.getConnectionEditPart().getModel());
NodePart entityPart = (NodePart) getHost();
cmd.setTargetEntity(entityPart.getElement());
return cmd;
}
Aggregations