Package org.jitterbit.application.ui.widget

Examples of org.jitterbit.application.ui.widget.WizardStyleDialog.wasOkPressed()


        KongaDialog dialog = new WizardStyleDialog(UiUtils.getActiveWindow(), "Select Which Objects To Copy",
                        selector, KongaDialog.CONTINUE_CANCEL, true);
        dialog.setContinueButtonAsDefault();
        dialog.manageLocation(SelectiveDeepCopyUi.class);
        dialog.setVisible(true);
        return dialog.wasOkPressed() ? selector.getItemsToExclude() : null;
    }
}
View Full Code Here


        };
        dialog.setFocusedComponent(joinProperties);
        dialog.manageLocation(JoinPropertiesUi.class);
        dialog.setOkButtonAsDefault();
        dialog.setVisible(true);
        if (dialog.wasOkPressed()) {
            joinProperties.apply();
            return true;
        }
        return false;
    }
View Full Code Here

            WizardStyleDialog dialog = new WizardStyleDialog(owner, TransformationResources.getString("TargetUpdateKeysEditor.Title"), ui);
            dialog.setResizable(false);
            dialog.setOkButtonAsDefault();
            dialog.manageLocation(TargetUpdateKeysEditor.class);
            dialog.setVisible(true);
            return dialog.wasOkPressed();
        }
    }

}
View Full Code Here

    }

    private void openTargetSelector() {
        EntityTypeSelectionPanel selector = createSelector();
        WizardStyleDialog dialog = openDialog(selector);
        if (dialog.wasOkPressed()) {
            EnumSet<EntityType> destinationTypes = selector.getSelection();
            if (!destinationTypes.isEmpty()) {
                startDuplication(destinationTypes);
            }
        }
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.