Package org.jitterbit.application.ui.window

Examples of org.jitterbit.application.ui.window.WindowSection.addContent()


        JComponent centerView = createSplitPaneCanvas();
        WindowSection centerSection = window.getWindowSection(ApplicationWindow.CENTER);
        centerSection.decorate(centerView);
        WindowSectionContent content = new EditorServiceWindowContent(centerSection, window.getEditorService());
        AddContentCallback callback = new AddContentWaitIndicator(window);
        centerSection.addContent(content, callback);
        JComponent east = createSplitPaneCanvas();
        window.getWindowSection(ApplicationWindow.EAST).decorate(east);
        centerEastSplit.setRightComponent(east);
        centerEastSplit.setLeftComponent(centerView);
    }
View Full Code Here


    }

    private void initializeControlPanel() {
        WindowSection controlSection = getWindow().getWindowSection(ApplicationWindow.WEST);
        controlPanel.setWindowSection(controlSection);
        controlSection.addContent(controlPanel, new AddContentWaitIndicator(getWindow()));
    }

    @Override
    public boolean displayEditor(Editor page) {
        return getEditorService().openEditor(page, AdminViewPageGroup.GROUP);
View Full Code Here

        private void switchToNewContentViewer() {
            WindowSection ws = appWin.getWindowSection(ApplicationWindow.WEST);
            uninstallCurrentViewer(ws);
            currentViewer = createNewViewer();
            ws.addContent(currentViewer.getWindowContent(), this);
        }

        private ProjectContentViewer createNewViewer() {
            ProjectContentViewer viewer = ProjectContentViewerManager.this.createNewViewer();
            IntegrationProject project = view.getProject();
View Full Code Here

            @Override
            public void run() {
                final AddContentCallback callback = new AddContentWaitIndicator(getWindow());
                WindowSection west = getWindow().getWindowSection(ApplicationWindow.WEST);
                west.addContent(contentViewerManager.getWindowContent(), callback);
            }
        });
    }

    private void checkStartupProject() {
View Full Code Here

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.