Package org.erlide.ui.launch

Examples of org.erlide.ui.launch.DebugTab


    private Collection<ILaunchConfigurationTab> createMyTabs(
            final ILaunchConfigurationDialog dialog, final String mode) {
        ILaunchConfigurationTab[] tabs;
        if (mode.equals("debug")) {
            tabs = new ILaunchConfigurationTab[] { new CoverMainTab(), new DebugTab(),
                    new CodepathTab() };
        } else {
            tabs = new ILaunchConfigurationTab[] { new CoverMainTab(), new CodepathTab() };
        }
        return Arrays.asList(tabs);
View Full Code Here

TOP

Related Classes of org.erlide.ui.launch.DebugTab

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.