KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > externaltools > internal > program > launchConfigurations > ProgramBuilderTabGroup


1 /*******************************************************************************
2  * Copyright (c) 2000, 2005 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.ui.externaltools.internal.program.launchConfigurations;
12
13
14 import org.eclipse.debug.ui.AbstractLaunchConfigurationTabGroup;
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 import org.eclipse.ui.externaltools.internal.launchConfigurations.ExternalToolsBuilderTab;
20
21 public class ProgramBuilderTabGroup extends AbstractLaunchConfigurationTabGroup {
22
23     /**
24      * @see org.eclipse.debug.ui.ILaunchConfigurationTabGroup#createTabs(org.eclipse.debug.ui.ILaunchConfigurationDialog, java.lang.String)
25      */

26     public void createTabs(ILaunchConfigurationDialog dialog, String JavaDoc mode) {
27         ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] {
28             new ProgramMainTab(),
29             new RefreshTab(),
30             new EnvironmentTab(),
31             new ExternalToolsBuilderTab(),
32         };
33         setTabs(tabs);
34     }
35 }
36
Popular Tags