Package org.jitterbit.application.ui.window.editor

Examples of org.jitterbit.application.ui.window.editor.EditorThumbnailSelectorWindow


    private EditorSelectorWindow createEditorSelector(EditorCategory category, KongaDialog dialog) {
        List<Editor> editors = model.getEditors(category);
        EditorService editorService = model.getEditorService();
        EditorSelectorWindow window;
        if (editors.size() <= THUMBNAIL_SELECTOR_LIMIT) {
            window = new EditorThumbnailSelectorWindow(editorService, editors, southPosition);
        } else {
            QuickSwitchEditorWindow listWindow = new QuickSwitchEditorWindow(editorService, editors);
            listWindow.setIncludeSearchField(false);
            window = listWindow;
        }
View Full Code Here

TOP

Related Classes of org.jitterbit.application.ui.window.editor.EditorThumbnailSelectorWindow

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.