Examples of KongaDialog


Examples of org.jitterbit.ui.dialog.KongaDialog

     *         user cancelled the request.
     */
    public static LoadSourceDataInput getInput(DatabaseStructure dbStruct) {
        assert EventQueue.isDispatchThread() : "This method must be called on the EDT";
        DatabaseFilterDefiner d = new DatabaseFilterDefiner(dbStruct);
        KongaDialog dlg = createDialog(UiUtils.getActiveFrame(), d.getDefiner());
        dlg.setVisible(true);
        if (dlg.wasOkPressed()) {
            return d.getDefiner().getInput();
        }
        return null;
    }
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.