blob: 536f7800e910b302f51d2177cc48b94099b19d3f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2017 CEA LIST.
*
* 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:
* Alain Faivre (CEA LIST) alain.faivre@cea.fr - Initial Implementation (tab-based, inserted in Run Configurations dialog)
* Erwan Mahe (CEA LIST) erwan.mahe@cea.fr - New API (free-composite-based, no type assumptions on parent)
*******************************************************************************/
package org.eclipse.efm.runconfiguration.ui.tabs;
import org.eclipse.efm.runconfiguration.LaunchConfigurationTabGroup;
import org.eclipse.efm.ui.views.launchconfigurations.components.FirstCompositeMaker;
import org.eclipse.efm.ui.resources.HelpCoReferee;
public class MainTab extends AbstractSewLaunchConfigurationTab {
/**
* Constructor
* @param groupTab
*/
public MainTab(LaunchConfigurationTabGroup groupTab) {
super(groupTab);
contentCompositeManager = new FirstCompositeMaker(this);
setHelpContextId(HelpCoReferee.efm_runconf_main_tab);
}
@Override
public String getName() {
return "Main";
}
}