Package org.jitterbit.ui.widget.list

Examples of org.jitterbit.ui.widget.list.ConnectedListsSelection


        lists.requestFocus();
    }

    @Override
    public boolean checkInput() {
        ConnectedListsSelection selection = lists.getSelection();
        if (selection.canConnect()) {
            DatabaseColumn pk = (DatabaseColumn) selection.getLeftObject();
            DatabaseColumn fk = (DatabaseColumn) selection.getRightObject();
            String message = String.format(
                            "The columns %s and %s are selected, but not joined.\n\nDo you want to join them?",
                            pk.getName(),
                            fk.getName());
            Answer a = Ask.yesNoOrCancel(message, "Join Selected Columns?");
View Full Code Here

TOP

Related Classes of org.jitterbit.ui.widget.list.ConnectedListsSelection

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.