Package com.dci.intellij.dbn.data.record.ui

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

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.