KickJava   Java API By Example, From Geeks To Geeks.

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


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.ILaunchConfigurationDialog;
17 import org.eclipse.debug.ui.ILaunchConfigurationTab;
18 import org.eclipse.debug.ui.sourcelookup.SourceLookupTab;
19 import org.eclipse.jdt.debug.ui.launchConfigurations.AppletArgumentsTab;
20 import org.eclipse.jdt.debug.ui.launchConfigurations.AppletMainTab;
21 import org.eclipse.jdt.debug.ui.launchConfigurations.AppletParametersTab;
22 import org.eclipse.jdt.debug.ui.launchConfigurations.JavaClasspathTab;
23 import org.eclipse.jdt.debug.ui.launchConfigurations.JavaJRETab;
24
25 public class JavaAppletTabGroup extends AbstractLaunchConfigurationTabGroup {
26     
27     /**
28      * Constructs a new Java applet tab group.
29      */

30     public JavaAppletTabGroup() {
31     }
32     
33     /* (non-Javadoc)
34      * @see org.eclipse.debug.ui.ILaunchConfigurationTabGroup#createTabs(org.eclipse.debug.ui.ILaunchConfigurationDialog, java.lang.String)
35      */

36     public void createTabs(ILaunchConfigurationDialog dialog, String JavaDoc mode) {
37         ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] {
38             new AppletMainTab(),
39             new AppletParametersTab(),
40             new AppletArgumentsTab(),
41             new JavaJRETab(),
42             new JavaClasspathTab(),
43             new SourceLookupTab(),
44             new CommonTab()
45         };
46         setTabs(tabs);
47     }
48     
49 }
50
Popular Tags