| 1 | package de.uka.ipd.sdq.dsexplore.analysis.cost; |
| 2 | |
| 3 | import org.eclipse.debug.ui.AbstractLaunchConfigurationTabGroup; |
| 4 | import org.eclipse.debug.ui.ILaunchConfigurationDialog; |
| 5 | import org.eclipse.debug.ui.ILaunchConfigurationTab; |
| 6 | |
| 7 | public class CostAnalysisTabGroup extends AbstractLaunchConfigurationTabGroup { |
| 8 | |
| 9 | public CostAnalysisTabGroup() { |
| 10 | // TODO Auto-generated constructor stub |
| 11 | } |
| 12 | |
| 13 | @Override |
| 14 | public void createTabs(ILaunchConfigurationDialog dialog, String mode) { |
| 15 | ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] { |
| 16 | new CostAnalysisTab() |
| 17 | }; |
| 18 | setTabs(tabs); |
| 19 | |
| 20 | } |
| 21 | |
| 22 | |
| 23 | |
| 24 | } |