A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse.externaltools / src / net / sourceforge / phpdt / externaltools / internal / program / launchConfigurations / ProgramBuilderTabGroup.java
1 package net.sourceforge.phpdt.externaltools.internal.program.launchConfigurations;
2
3 /**********************************************************************
4  Copyright (c) 2000, 2002 IBM Corp.  All rights reserved.
5  This file is made available under the terms of the Common Public License v1.0
6  which accompanies this distribution, and is available at
7  http://www.eclipse.org/legal/cpl-v10.html
8  **********************************************************************/
9
10 import net.sourceforge.phpdt.externaltools.launchConfigurations.ExternalToolsRefreshTab;
11
12 import org.eclipse.debug.ui.AbstractLaunchConfigurationTabGroup;
13 import org.eclipse.debug.ui.ILaunchConfigurationDialog;
14 import org.eclipse.debug.ui.ILaunchConfigurationTab;
15
16 public class ProgramBuilderTabGroup extends AbstractLaunchConfigurationTabGroup {
17
18         /**
19          * @see org.eclipse.debug.ui.ILaunchConfigurationTabGroup#createTabs(org.eclipse.debug.ui.ILaunchConfigurationDialog,
20          *      java.lang.String)
21          */
22         public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
23                 ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] {
24                                 new ProgramMainTab(), new ExternalToolsRefreshTab(), };
25                 setTabs(tabs);
26         }
27
28 }