Package org.jitterbit.application.ui.widget

Examples of org.jitterbit.application.ui.widget.FolderSelectorPanelBuilder


        jpBrowser.addJitterPackSelectionListener(selectionNotifier);
        return jpBrowser;
    }

    private FileSelectorPanel createDestinationPanel(File suggestedDestinationFolder) {
        FolderSelectorPanelBuilder builder = new FolderSelectorPanelBuilder();
        builder.setPreferenceKey(new PreferencesKey(ImportJitterPackUi.class, "Destination"));
        builder.setTitle(Strings.getJitterPackString("Import.Destination"));
        builder.setDefaultFolder(suggestedDestinationFolder);
        FileSelectorPanel panel = builder.buildPanel(window);
        panel.setBrowseButtonText(Strings.get("Import.Destination.Browse"));
        LabelDecorator d = TextStyles.DefaultText.asLabelDecorator(ApplicationResources.ICONS.getIcon("FolderClosed.16"));
        panel.decorateTitle(d);
        return panel;
    }
View Full Code Here


        stopAction = new StopSearchAction();
        statusPanel = new StatusPanel();
    }

    private FileSelectorPanel createRootSelector() {
        FolderSelectorPanelBuilder builder = new FolderSelectorPanelBuilder();
        builder.setPreferenceKey(new PreferencesKey(ProjectSearchUi.class, "Root"))
               .setDefaultFolder(defaultSearchFolder)
               .setTitle(getString("Search.RootSelector"));
        return builder.buildPanel(null);
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.application.ui.widget.FolderSelectorPanelBuilder

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.