1 /*******************************************************************************2 * Copyright (c) 2000, 2005 IBM Corporation and others.3 * All rights reserved. This program and the accompanying materials4 * are made available under the terms of the Eclipse Public License v1.05 * which accompanies this distribution, and is available at6 * http://www.eclipse.org/legal/epl-v10.html7 * 8 * Contributors:9 * IBM Corporation - initial API and implementation10 *******************************************************************************/11 package org.eclipse.ui.externaltools.internal.program.launchConfigurations;12 13 import org.eclipse.debug.ui.AbstractLaunchConfigurationTabGroup;14 import org.eclipse.debug.ui.CommonTab;15 import org.eclipse.debug.ui.EnvironmentTab;16 import org.eclipse.debug.ui.ILaunchConfigurationDialog;17 import org.eclipse.debug.ui.ILaunchConfigurationTab;18 import org.eclipse.debug.ui.RefreshTab;19 20 public class ProgramTabGroup extends AbstractLaunchConfigurationTabGroup {21 22 /**23 * @see org.eclipse.debug.ui.ILaunchConfigurationTabGroup#createTabs(org.eclipse.debug.ui.ILaunchConfigurationDialog, java.lang.String)24 */25 public void createTabs(ILaunchConfigurationDialog dialog, String mode) {26 ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] {27 new ProgramMainTab(),28 new RefreshTab(),29 new EnvironmentTab(),30 new CommonTab()31 };32 setTabs(tabs);33 }34 }35