Package org.jitterbit.application.ui.widget

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


        this.appWin = appWin;
        this.appWin.setFrame(this);
        content = new MainWindowContentArea(appWin);
        this.statusPanel = statusPanel;
        quickLaunchPanel = createQuickLaunchPanel();
        toolBarPanel = new ApplicationToolBar(new JButton[0]);
        toolBarPanel.setToolBarOpaque(true);
        topPanel = new TopPanel(connectionIndicator);
        appWin.getWindowSection(SectionPosition.SOUTH).addWindowSectionListener(new ErrorLogOpenedListener());
        layoutComponents();
        setWindowSize();
View Full Code Here


        }
        if (includeCloseButton) {
            buttons.add(createCloseButton());
        }
        if (!buttons.isEmpty()) {
            return new ApplicationToolBar(buttons.toArray(new JButton[buttons.size()]));
        }
        return null;
    }
View Full Code Here

TOP

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

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.