Examples of show()


Examples of com.dci.intellij.dbn.connection.transaction.ui.IdleConnectionDialog.show()

                    if (connectionHandler.hasUncommittedChanges()) {
                        connectionHandler.getConnectionStatus().setResolvingIdleStatus(true);
                        new SimpleLaterInvocator() {
                            public void execute() {
                                IdleConnectionDialog idleConnectionDialog = new IdleConnectionDialog(connectionHandler);
                                idleConnectionDialog.show();
                            }
                        }.start();
                    } else {
                        transactionManager.execute(connectionHandler, false, TransactionAction.DISCONNECT_IDLE);
                    }
View Full Code Here

Examples of com.dci.intellij.dbn.connection.transaction.ui.UncommittedChangesDialog.show()

        return executionDialog.getExitCode() == DialogWrapper.OK_EXIT_CODE;
    }

    public boolean showUncommittedChangesDialog(ConnectionHandler connectionHandler, @Nullable TransactionAction additionalOperation) {
        UncommittedChangesDialog executionDialog = new UncommittedChangesDialog(connectionHandler, additionalOperation, false);
        executionDialog.show();
        return executionDialog.getExitCode() == DialogWrapper.OK_EXIT_CODE;
    }

    public void toggleAutoCommit(ConnectionHandler connectionHandler) {
        boolean isAutoCommit = connectionHandler.isAutoCommit();
View Full Code Here

Examples of com.dci.intellij.dbn.connection.transaction.ui.UncommittedChangesOverviewDialog.show()

    }


    public boolean showUncommittedChangesOverviewDialog(@Nullable TransactionAction additionalOperation) {
        UncommittedChangesOverviewDialog executionDialog = new UncommittedChangesOverviewDialog(getProject(), additionalOperation);
        executionDialog.show();
        return executionDialog.getExitCode() == DialogWrapper.OK_EXIT_CODE;
    }

    public boolean showUncommittedChangesDialog(ConnectionHandler connectionHandler, @Nullable TransactionAction additionalOperation) {
        UncommittedChangesDialog executionDialog = new UncommittedChangesDialog(connectionHandler, additionalOperation, false);
View Full Code Here

Examples of com.dci.intellij.dbn.connection.ui.SelectConnectionDialog.show()

            int response = Messages.showDialog(message, Constants.DBN_TITLE_PREFIX + "No valid Connection / Schema", options, 0, Messages.getWarningIcon());

            if (response == 0) {
                SelectConnectionDialog selectConnectionDialog = new SelectConnectionDialog(file);
                selectConnectionDialog.show();
                return selectConnectionDialog.getExitCode() == SelectConnectionDialog.OK_EXIT_CODE;
            } else {
                return false;
            }
        } else {
View Full Code Here

Examples of com.dci.intellij.dbn.data.export.ui.ExportDataDialog.show()

        this.dataset = dataset;
    }

    public void actionPerformed(AnActionEvent e) {
        ExportDataDialog dialog = new ExportDataDialog(table, dataset);
        dialog.show();
    }
}
View Full Code Here

Examples of com.dci.intellij.dbn.data.preview.LargeValuePreviewPopup.show()

                    int preferredWidth = column.getWidth();
                    LargeValuePreviewPopup viewer = new LargeValuePreviewPopup(this, cell, preferredWidth);
                    initLargeValuePopup(viewer);
                    Point location = cellRect.getLocation();
                    location.setLocation(location.getX() + 4, location.getY() + 20);
                    valuePopup = viewer.show(this, location);
                }
            }
        }
    }
View Full Code Here

Examples of com.dci.intellij.dbn.data.record.ui.RecordViewerDialog.show()

   
    public void openRecordViewer(DatasetFilterInput filterInput) {
        try {
            DatasetRecord record = new DatasetRecord(filterInput);
            RecordViewerDialog dialog = new RecordViewerDialog(record);
            dialog.show();
        } catch (SQLException e) {
            MessageUtil.showErrorDialog("Could not load record details", e);
        }
    }
View Full Code Here

Examples of com.dci.intellij.dbn.data.ui.table.resultSet.record.ResultSetRecordViewerDialog.show()

        return (ResultSetDataModel) super.getModel();
    }

    public void showRecordViewDialog() {
        ResultSetRecordViewerDialog dialog = new ResultSetRecordViewerDialog(this);
        dialog.show();
    }
}
View Full Code Here

Examples of com.dci.intellij.dbn.ddl.ui.AttachDDLFileDialog.show()

        return false;
    }

    public int showFileAttachDialog(DBSchemaObject object, List<VirtualFile> virtualFiles, boolean showLookupOption) {
        AttachDDLFileDialog dialog = new AttachDDLFileDialog(virtualFiles, object, showLookupOption);
        dialog.show();
        return dialog.getExitCode();
    }

    public int showFileDetachDialog(DBSchemaObject object, List<VirtualFile> virtualFiles) {
        DetachDDLFileDialog dialog = new DetachDDLFileDialog(virtualFiles, object);
View Full Code Here

Examples of com.dci.intellij.dbn.ddl.ui.DetachDDLFileDialog.show()

        return dialog.getExitCode();
    }

    public int showFileDetachDialog(DBSchemaObject object, List<VirtualFile> virtualFiles) {
        DetachDDLFileDialog dialog = new DetachDDLFileDialog(virtualFiles, object);
        dialog.show();
        return dialog.getExitCode();
    }

    public void bindDDLFile(DBSchemaObject object, VirtualFile virtualFile) {
        DBObjectRef<DBSchemaObject> objectRef = DBObjectRef.from(object);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.