org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/launcher/JavaAppletTabGroup.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.11 - (view) (download)

1 : droberts 1.5 /*******************************************************************************
2 : darins 1.11 * Copyright (c) 2000, 2005 IBM Corporation and others.
3 : krbarnes 1.9 * All rights reserved. This program and the accompanying materials
4 : darins 1.10 * are made available under the terms of the Eclipse Public License v1.0
5 : droberts 1.5 * which accompanies this distribution, and is available at
6 : darins 1.10 * http://www.eclipse.org/legal/epl-v10.html
7 : droberts 1.5 *
8 :     * Contributors:
9 :     * IBM Corporation - initial API and implementation
10 :     *******************************************************************************/
11 : jszursze 1.1 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 : darin 1.8 import org.eclipse.debug.ui.sourcelookup.SourceLookupTab;
19 : jszursze 1.3 import org.eclipse.jdt.debug.ui.launchConfigurations.AppletArgumentsTab;
20 :     import org.eclipse.jdt.debug.ui.launchConfigurations.AppletMainTab;
21 : jszursze 1.2 import org.eclipse.jdt.debug.ui.launchConfigurations.AppletParametersTab;
22 : jszursze 1.1 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 : jszursze 1.3 * Constructs a new Java applet tab group.
29 : jszursze 1.1 */
30 :     public JavaAppletTabGroup() {
31 :     }
32 :    
33 : darins 1.7 /* (non-Javadoc)
34 :     * @see org.eclipse.debug.ui.ILaunchConfigurationTabGroup#createTabs(org.eclipse.debug.ui.ILaunchConfigurationDialog, java.lang.String)
35 : jszursze 1.1 */
36 :     public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
37 :     ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] {
38 :     new AppletMainTab(),
39 : jszursze 1.2 new AppletParametersTab(),
40 : jszursze 1.3 new AppletArgumentsTab(),
41 : jszursze 1.1 new JavaJRETab(),
42 : darin 1.4 new JavaClasspathTab(),
43 : darin 1.8 new SourceLookupTab(),
44 : jszursze 1.1 new CommonTab()
45 :     };
46 :     setTabs(tabs);
47 :     }
48 : jszursze 1.3
49 : jszursze 1.1 }