blob: a189337243aaed41a571da801d4741b216882bbb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 The University of York.
* 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:
* Dimitrios Kolovos - initial API and implementation
******************************************************************************/
package org.eclipse.epsilon.evl.dt.launching;
import org.eclipse.debug.ui.ILaunchConfigurationTab;
import org.eclipse.epsilon.common.dt.launching.tabs.EpsilonLaunchConfigurationTabGroup;
import org.eclipse.epsilon.evl.dt.launching.tabs.EvlAdvanceOptionsTab;
import org.eclipse.epsilon.evl.dt.launching.tabs.EvlSourceConfigurationTab;
public class EvlLaunchConfigurationTabGroup extends EpsilonLaunchConfigurationTabGroup {
@Override
public ILaunchConfigurationTab getSourceConfigurationTab() {
return new EvlSourceConfigurationTab();
}
@Override
public ILaunchConfigurationTab[] getOtherConfigurationTabs() {
return new ILaunchConfigurationTab[]{new EvlAdvanceOptionsTab()};
}
}