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