Package fr.soleil.gui.flyscan

Examples of fr.soleil.gui.flyscan.ConfigurationGUI


        panel.setLayout(new BorderLayout());
        panel.add(component, BorderLayout.CENTER);
        super.addTab(title, icon, panel, tip);
        int count = this.getTabCount() - 1;
        if (component instanceof ConfigurationGUI) {
            ConfigurationGUI configGui = ((ConfigurationGUI) component);
            boolean isEnabled = configGui.isEnabled();
            setTabComponentAt(count, new CloseSaveButtonTab(panel, title, icon, (ConfigurationGUI) component, isExpert,
                    isEnabled));
        }
    }
View Full Code Here


            count = tabIndex;
            setComponentAt(count, component);
        }

        if (component instanceof ConfigurationGUI) {
            ConfigurationGUI configGui = ((ConfigurationGUI) component);
            boolean isEnabled = configGui.isEnabled();
            setTabComponentAt(count, new CloseSaveButtonTab(splitPane, title, null, (ConfigurationGUI) component,
                    isExpert, isEnabled));
        }
    }
View Full Code Here

TOP

Related Classes of fr.soleil.gui.flyscan.ConfigurationGUI

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.