Package org.jitterbit.ui.dialog

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


    private KongaDialog createDialog(BorderLayoutBuilder layout) {
        KongaDialog dialog = new KongaDialog(owner, "Operation Monitor: " + op.getName(), ModalityType.MODELESS);
        setDialogImage(dialog);
        dialog.standardLayout(layout, KongaDialog.CLOSE_ONLY);
        dialog.addWindowListener(new WindowAdapter() {

            @Override
            public void windowClosed(WindowEvent e) {
                if (impl != null) {
                    impl.closeActivityMonitor();
View Full Code Here


        }
        createContentPane(dlg);
        dlg.pack();
        dlg.setLocationRelativeTo(owner);
        dlg.manageLocation(MessagePropertiesDialog.class);
        dlg.addWindowListener(new WindowAdapter() {

            @Override
            public void windowClosed(WindowEvent e) {
                dialogGate.setEnabled(true);
                MessagePropertiesDialog.this.dialog = null;
View Full Code Here

                                            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

        dialog.setVisible(true);
    }

    private KongaDialog createDialog(Window owner) {
        KongaDialog w = instantiateDialog(owner);
        w.addWindowListener(new WindowCloseHandler());
        return w;
    }

    private KongaDialog instantiateDialog(Window owner) {
        KongaDialog dialog = new KongaDialog(owner, "", ModalityType.MODELESS);
View Full Code Here

        }
        createContentPane(dlg);
        dlg.pack();
        dlg.setLocationRelativeTo(owner);
        dlg.manageLocation(MessagePropertiesDialog.class);
        dlg.addWindowListener(new WindowAdapter() {

            @Override
            public void windowClosed(WindowEvent e) {
                dialogGate.setEnabled(true);
                MessagePropertiesDialog.this.dialog = null;
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.