Package org.jitterbit.integration.client.ui.entity.typeselector

Examples of org.jitterbit.integration.client.ui.entity.typeselector.EntityTypeSelectionPanel


    private void createComponents() {
        displayer = new JPanel();
        includeAll = new KongaCheckBox(getString("Search.TypeSelector.All"), true);
        includeAll.addActionListener(this);
        TypeFilter filter = new TypeFilter();
        typeSelectionPanel = new EntityTypeSelectionPanel(filter);
        typeSelectionPanel.addEntityTypeSelectionListener(this);
        typeSelectionPanel.setEnabled(false);
    }
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

    }
   
    private EntityTypeSelectionPanel createSelector() {
        TypeFilter filter = new TypeFilter(EnumSet.of(sourceFolder.getItemType(), EntityType.Folder,
                        EntityType.RootFolder, EntityType.Project));
        EntityTypeSelectionPanel panel = new EntityTypeSelectionPanel(filter);
        panel.applyMnemonics();
        return panel;
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.ui.entity.typeselector.EntityTypeSelectionPanel

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.