blob: 113a8890f3c71811fcb060546009248aa45b7e1b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Aston University.
* 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:
* Antonio Garcia-Dominguez - initial API and implementation
******************************************************************************/
package org.eclipse.epsilon.examples.testlang.dt.launching;
import org.eclipse.debug.ui.ILaunchConfigurationTab;
import org.eclipse.epsilon.common.dt.launching.tabs.EpsilonLaunchConfigurationTabGroup;
public class TestLangLaunchConfigurationTabGroup extends EpsilonLaunchConfigurationTabGroup {
@Override
public ILaunchConfigurationTab getSourceConfigurationTab() {
return new TestLangSourceConfigurationTab();
}
}