/*******************************************************************************
* Copyright (c) 2014, 2014 Bruno Medeiros and other Contributors.
* 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:
* Bruno Medeiros - initial API and implementation
*******************************************************************************/
package com.googlecode.goclipse.ui.launch;
import melnorme.lang.ide.ui.launch.AbstractLangTabGroup;
import org.eclipse.debug.ui.CommonTab;
import org.eclipse.debug.ui.EnvironmentTab;
import org.eclipse.debug.ui.ILaunchConfigurationDialog;
import org.eclipse.debug.ui.ILaunchConfigurationTab;
public class GoLaunchTabGroup extends AbstractLangTabGroup {
@Override
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
setTabs(new ILaunchConfigurationTab[] {
createMainLaunchConfigTab(),
// new LangArgumentsTab(),
new EnvironmentTab(),
new CommonTab()
});
}
@Override
protected ILaunchConfigurationTab createMainLaunchConfigTab() {
return new GoLaunchConfigurationTab();
}
}