KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdt > internal > debug > ui > launcher > LocalJavaApplicationTabGroup


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.jdt.internal.debug.ui.launcher;
12
13  
14 import org.eclipse.debug.ui.AbstractLaunchConfigurationTabGroup;
15 import org.eclipse.debug.ui.CommonTab;
16 import org.eclipse.debug.ui.EnvironmentTab;
17 import org.eclipse.debug.ui.ILaunchConfigurationDialog;
18 import org.eclipse.debug.ui.ILaunchConfigurationTab;
19 import org.eclipse.debug.ui.sourcelookup.SourceLookupTab;
20 import org.eclipse.jdt.debug.ui.launchConfigurations.*;
21
22 public class LocalJavaApplicationTabGroup extends AbstractLaunchConfigurationTabGroup {
23
24     /**
25      * @see ILaunchConfigurationTabGroup#createTabs(ILaunchConfigurationDialog, String)
26      */

27     public void createTabs(ILaunchConfigurationDialog dialog, String JavaDoc mode) {
28         ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] {
29             new JavaMainTab(),
30             new JavaArgumentsTab(),
31             new JavaJRETab(),
32             new JavaClasspathTab(),
33             new SourceLookupTab(),
34             new EnvironmentTab(),
35             new CommonTab()
36         };
37         setTabs(tabs);
38     }
39
40 }
41
Popular Tags