1 | package de.uka.ipd.sdq.cip.runtime.runconfig.tabs; |
2 | |
3 | import org.eclipse.debug.ui.AbstractLaunchConfigurationTabGroup; |
4 | import org.eclipse.debug.ui.ILaunchConfigurationDialog; |
5 | import org.eclipse.debug.ui.ILaunchConfigurationTab; |
6 | |
7 | import de.uka.ipd.sdq.workflow.launchconfig.tabs.DebugEnabledCommonTab; |
8 | |
9 | public class CipTabGroup extends AbstractLaunchConfigurationTabGroup { |
10 | |
11 | @Override |
12 | public void createTabs(ILaunchConfigurationDialog dialog, String mode) { |
13 | ILaunchConfigurationTab commonTab = new DebugEnabledCommonTab(); |
14 | ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] { |
15 | new CipModelTab(), |
16 | new CipCompletionTab(), |
17 | new CipConfigTab(), |
18 | commonTab |
19 | }; |
20 | setTabs(tabs); |
21 | |
22 | } |
23 | |
24 | } |