Package org.jitterbit.application.ui.window

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


    private void createCenterEastSplit(MainWindow window) {
        centerEastSplit = createSplitPane(JSplitPane.HORIZONTAL_SPLIT, 1, true);
        centerEastSplit.setBorder(null);
        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);
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.