| 1 | package de.uka.ipd.sdq.dsexplore.analysis.reliability.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 | import de.uka.ipd.sdq.reliability.solver.runconfig.OptionsTab; |
| 8 | |
| 9 | /** |
| 10 | * Provides a configuration tab group for the reliability Solver analysis method. |
| 11 | * |
| 12 | * @author anne |
| 13 | * |
| 14 | */ |
| 15 | public class ReliabilityAnalysisTabGroup extends AbstractLaunchConfigurationTabGroup { |
| 16 | |
| 17 | public void createTabs(ILaunchConfigurationDialog dialog, String mode) { |
| 18 | ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] { |
| 19 | new OptionsTab() |
| 20 | }; |
| 21 | setTabs(tabs); |
| 22 | |
| 23 | } |
| 24 | |
| 25 | |
| 26 | |
| 27 | } |