Added a test launch config
[Mograsim.git] / plugins / net.mograsim.plugin.core / src / net / mograsim / plugin / launch / EmptyLaunchConfigTabGroup.java
1 package net.mograsim.plugin.launch;
2
3 import org.eclipse.debug.ui.AbstractLaunchConfigurationTabGroup;
4 import org.eclipse.debug.ui.ILaunchConfigurationDialog;
5 import org.eclipse.debug.ui.ILaunchConfigurationTab;
6
7 /**
8  * Useful for specifying launch config tabs via the extension point <code>org.eclipse.debug.ui.launchConfigurationTabs</code>.
9  * 
10  * @author Daniel Kirschten
11  */
12 public class EmptyLaunchConfigTabGroup extends AbstractLaunchConfigurationTabGroup
13 {
14         @Override
15         public void createTabs(ILaunchConfigurationDialog dialog, String mode)
16         {
17                 setTabs(new ILaunchConfigurationTab[0]);
18         }
19 }