Package org.jitterbit.application.ui.Alert

Examples of org.jitterbit.application.ui.Alert.Type


                Alert.info(getString("RequiredPluginsView.Check.Ok"),
                        getString("RequiredPluginsView.Check.Ok.Title"));
            } else {
                String title = getString("RequiredPluginsView.Problem.Title");
                String caption = getString("RequiredPluginsView.Problem.Caption");
                Type type = isFatal() ? Type.ERROR : Type.WARNING;
                BorderLayoutBuilder layout = new BorderLayoutBuilder(10, 0);
                JLabel icon = new JLabel(type.getIcon());
                icon.setVerticalAlignment(SwingConstants.TOP);
                layout.west(icon);
                layout.center(new AvailabilityResultTable(caption, getTableModel()));
                UiProviderDialogDisplayer.display(ApplicationUi.getAppWinFrame(), layout, title, KongaDialog.OK_ONLY,
                                CheckAvailabilityJob.class);
View Full Code Here

TOP

Related Classes of org.jitterbit.application.ui.Alert.Type

Copyright © 2018 www.massapicom. 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.