Examples of DetailsDialog


Examples of org.openquark.util.ui.DetailsDialog

            }
        } else {           
            details.append(getResourceString("WorkspaceInfo_None"));
        }
       
        DetailsDialog dialog = new DetailsDialog(GemCutter.this, title, message, details.toString(), (Icon)null);
        dialog.setDetailsVisible(true);
        dialog.doModal();
    }
View Full Code Here

Examples of org.openquark.util.ui.DetailsDialog

       
        if (!loadStatus.isOK()) {
            String title = getResourceString("WarningDialogTitle");
            String message = getResourceString("OpenErrorsWarning");
            String details = loadStatus.getDebugMessage();
            DetailsDialog dialog = new DetailsDialog(this, title, message, details, DetailsDialog.MessageType.WARNING);
            dialog.doModal();
        }
           
        // reset the table top explorer
        getTableTop().addGemGraphChangeListener(getTableTopExplorer());
        getTableTopExplorerAdapter().getTableTopExplorer().rebuildTree();
View Full Code Here

Examples of org.openquark.util.ui.DetailsDialog

            StringBuilder details = new StringBuilder();
            for (final String message : messages) {
                details.append(message).append('\n');
            }
           
            DetailsDialog dialog = new DetailsDialog(
                GemCutter.this,
                getResourceString("ExportCarMessagesDialogTitle"),
                getResourceString("ExportCarMessagesDialogMessage"),
                details.toString(),
                DetailsDialog.MessageType.INFORMATION);
           
            dialog.doModal();
        }
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.