Package cucumber.eclipse.launching

Source Code of cucumber.eclipse.launching.CucumberFeatureTabGroup

package cucumber.eclipse.launching;

import org.eclipse.debug.ui.AbstractLaunchConfigurationTabGroup;
import org.eclipse.debug.ui.CommonTab;
import org.eclipse.debug.ui.ILaunchConfigurationDialog;
import org.eclipse.debug.ui.ILaunchConfigurationTab;
import org.eclipse.debug.ui.ILaunchConfigurationTabGroup;
import org.eclipse.jdt.debug.ui.launchConfigurations.JavaClasspathTab;
import org.eclipse.jdt.debug.ui.launchConfigurations.JavaJRETab;

public class CucumberFeatureTabGroup
  extends AbstractLaunchConfigurationTabGroup
  implements ILaunchConfigurationTabGroup {

  @Override
  public void createTabs(ILaunchConfigurationDialog arg0, String arg1) {
         ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] {
         new CucumberMainTab(),
        //new JavaArgumentsTab(),
        new JavaJRETab(),
        new JavaClasspathTab(),
        new CommonTab()
    };
    setTabs(tabs);
  }
}

TOP

Related Classes of cucumber.eclipse.launching.CucumberFeatureTabGroup

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.