blob: 1ef66ab9e18dde7adbaeb31f7392a465d96f6e40 [file] [log] [blame]
/*
* Copyright (c) 2009, 2011 Mia-Software.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Gabriel Barbier (Mia-Software) - initial API and implementation
* Fabien Giquel (Mia-Software)
*/
package org.eclipse.modisco.infra.discovery.ui.internal.launch;
import org.eclipse.debug.ui.AbstractLaunchConfigurationTabGroup;
import org.eclipse.debug.ui.CommonTab;
import org.eclipse.debug.ui.ILaunchConfigurationDialog;
import org.eclipse.debug.ui.ILaunchConfigurationTab;
public class DiscoverersTabGroup extends AbstractLaunchConfigurationTabGroup {
/*
* (non-Javadoc)
*
* @see
* org.eclipse.debug.ui.ILaunchConfigurationTabGroup#createTabs(org.eclipse
* .debug.ui.ILaunchConfigurationDialog, java.lang.String)
*/
public void createTabs(final ILaunchConfigurationDialog dialog, final String mode) {
ILaunchConfigurationTab discovererTab = new DiscoverersMainTab();
ILaunchConfigurationTab commonTab = new CommonTab();
setTabs(new ILaunchConfigurationTab[] { discovererTab, commonTab });
}
}