Examples of manageLocation()


Examples of org.jitterbit.ui.dialog.KongaDialog.manageLocation()

                dialog.dispose();
            }
        });
        dialog.standardLayout(selector, KongaDialog.OK_CANCEL);
        dialog.setOkButtonAsDefault();
        dialog.manageLocation(getClass());
        dialog.setVisible(true);
    }

}
View Full Code Here

Examples of org.jitterbit.ui.dialog.KongaDialog.manageLocation()

        return dlg.wasOkPressed() ? ui.getSelection() : null;
    }

    private KongaDialog createDialog(Ui ui) {
        KongaDialog dialog = new WizardStyleDialog(owner, Strings.get("RouteTypeSelector.Title"), ui);
        dialog.manageLocation(RouteTypeSelector.class);
        dialog.setResizable(false);
        dialog.setOkButtonAsDefault();
        return dialog;
    }
View Full Code Here

Examples of org.jitterbit.ui.dialog.KongaDialog.manageLocation()

    private KongaDialog createDialog() {
        KongaDialog dialog = new KongaDialog(UiUtils.getActiveWindow(), "Define Extended Attributes");
        BorderLayoutBuilder layout = new BorderLayoutBuilder(0, 5);
        layout.north("Define the extended attributes to use for " + node.getUserObject().getName()).center(ui);
        dialog.standardLayout(layout, KongaDialog.OK_CANCEL);
        dialog.manageLocation(SetExtendedAttributesAction.class);
        dialog.setOkButtonAsDefault();
        return dialog;
    }

    private void applyAttributes() {
View Full Code Here

Examples of org.jitterbit.ui.dialog.KongaDialog.manageLocation()

        @Override
        public void display() {
            KongaDialog dialog = new KongaDialog(UiUtils.getActiveWindow(), PackageResources.DocumentationDisplayer.TITLE);
            layoutDialog(dialog);
            dialog.manageLocation(WebServiceOperationDocumentationDisplayer.class);
            dialog.setVisible(true);
        }
       
        private void layoutDialog(KongaDialog dialog) {
            BorderLayoutBuilder layout = layout();
View Full Code Here

Examples of org.jitterbit.ui.dialog.KongaDialog.manageLocation()

                }
                OperationActivityMonitorDialog.this.dialog = null;
            }
        });
        dialog.setLocationRelativeTo(null);
        dialog.manageLocation(getClass());
        dialog.setCloseButtonAsDefault();
        return dialog;
    }
   
    private static void setDialogImage(KongaDialog dialog) {
View Full Code Here

Examples of org.jitterbit.ui.dialog.KongaDialog.manageLocation()

            BorderLayoutBuilder layout = new BorderLayoutBuilder(0, 10).north(
                            createCaption()).south(createButtons(dlg));
            layout.withEmptyBorder(10, 10, 10, 10).asContentPaneFor(dlg);
            dlg.pack();
            dlg.setResizable(false);
            dlg.manageLocation(OperationGraphManager.class);
            return dlg;
        }

        private JComponent createButtons(KongaDialog dlg) {
            return BoxBuilder.horizontal().glue().addAllWithSpace(10,
View Full Code Here

Examples of org.jitterbit.ui.dialog.KongaDialog.manageLocation()

            throw new IllegalArgumentException("Invalid dialog owner: " + (owner != null ? owner.getClass() : "null")); //$NON-NLS-1$ //$NON-NLS-2$
        }
        createContentPane(dlg);
        dlg.pack();
        dlg.setLocationRelativeTo(owner);
        dlg.manageLocation(MessagePropertiesDialog.class);
        dlg.addWindowListener(new WindowAdapter() {

            @Override
            public void windowClosed(WindowEvent e) {
                dialogGate.setEnabled(true);
View Full Code Here

Examples of org.jitterbit.ui.dialog.KongaDialog.manageLocation()

        }

        private KongaDialog createDialog(HtmlLogMessageDisplayer m) {
            KongaDialog dialog = new KongaDialog(getOwner(), "Log Message");
            dialog.standardLayout(m, KongaDialog.CLOSE_ONLY);
            dialog.manageLocation(OperationActivityMonitor.class);
            WindowUtils.ensureMinimumSize(dialog, 400, 300);
            dialog.setCloseButtonAsDefault();
            return dialog;
        }
View Full Code Here

Examples of org.jitterbit.ui.dialog.KongaDialog.manageLocation()

        }
    }

    private KongaDialog createDialog(Window owner, EntitySearchPanel searchPanel) {
        KongaDialog dialog = new WizardStyleDialog(owner, "Search & Replace", searchPanel, KongaDialog.CLOSE_ONLY, false);
        dialog.manageLocation(SearchAndReplaceAction.class);
        return dialog;
    }

}
View Full Code Here

Examples of org.jitterbit.ui.dialog.KongaDialog.manageLocation()

                                            final ChunkNodeSelector selector,
                                            final Transformation tx,
                                            final SourceTarget st) {
        final KongaDialog dlg = new KongaDialog(owner, "Select the Chunk Node", true);
        dlg.standardLayout(selector, KongaDialog.OK_CANCEL);
        dlg.manageLocation(ChunkNodeSelectorDialog.class);
        dlg.addWindowListener(new WindowAdapter() {

            @Override
            public void windowOpened(WindowEvent e) {
                selector.createStructures(tx, st);
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.