Package bndtools.launch.ui.internal

Source Code of bndtools.launch.ui.internal.JUnitLaunchTabGroup

package bndtools.launch.ui.internal;

import org.eclipse.debug.ui.AbstractLaunchConfigurationTabGroup;
import org.eclipse.debug.ui.CommonTab;
import org.eclipse.debug.ui.EnvironmentTab;
import org.eclipse.debug.ui.ILaunchConfigurationDialog;
import org.eclipse.debug.ui.ILaunchConfigurationTab;
import org.eclipse.debug.ui.sourcelookup.SourceLookupTab;
import org.eclipse.jdt.debug.ui.launchConfigurations.JavaJRETab;

public class JUnitLaunchTabGroup extends AbstractLaunchConfigurationTabGroup {

    public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
        ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] {
                new OSGiJUnitLaunchTab(), new SourceLookupTab(), new JavaJRETab(), new EnvironmentTab(), new CommonTab(),
        };
        setTabs(tabs);
    }

}
TOP

Related Classes of bndtools.launch.ui.internal.JUnitLaunchTabGroup

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.