Package com.atlauncher.gui.components

Examples of com.atlauncher.gui.components.CollapsiblePanel


    private JPanel createSettingsPanel() {
        JPanel settingsPanel = new JPanel();
        settingsPanel.add(new BackupGeneralSettingsPanel());

        for (Map.Entry<String, SyncAbstract> entry : SyncAbstract.syncList.entrySet()) {
            CollapsiblePanel settingPanel = entry.getValue().getSettingsPanel();
            if (settingPanel != null) {
                settingsPanel.add(settingPanel);
            }
        }
        return settingsPanel;
View Full Code Here

TOP

Related Classes of com.atlauncher.gui.components.CollapsiblePanel

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.