blob: bfc28948169ca09bc2fdbdc159cd99d854a833a2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
/*
* $RCSfile: LocalLaunchTabGroup.java,v $ $Revision: 1.1 $ $Date: 2004/03/04 16:14:29 $
*/
package org.eclipse.jem.internal.ui.proxy.remote;
import org.eclipse.debug.ui.*;
import org.eclipse.jdt.debug.ui.launchConfigurations.*;
/**
* Launch Tab Group for the Local Launch of a Remote Proxy Configuration.
*
* @since 1.0.0
*/
public class LocalLaunchTabGroup extends AbstractLaunchConfigurationTabGroup {
/**
* Constructs a new Java applet tab group.
*/
public LocalLaunchTabGroup() {
}
/*
* @see ILaunchConfigurationTabGroup#createTabs(ILaunchConfigurationDialog, String)
*/
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
ILaunchConfigurationTab[] tabs =
new ILaunchConfigurationTab[] {
new LocalLaunchProjectTab(),
new JavaArgumentsTab(),
new JavaJRETab(),
new JavaClasspathTab(),
new JavaSourceLookupTab(),
new EnvironmentTab(),
new CommonTab()};
setTabs(tabs);
}
}