Skip to main content
summaryrefslogtreecommitdiffstats
blob: 8fe70b7166d76e4ebf12b37bc515205e7f6c6fcb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*******************************************************************************
 * Copyright (c) 2006 PalmSource, Inc.
 * All rights reserved. This program and the accompanying materials 
 * are made available under the terms of the Eclipse Public License v1.0 
 * which accompanies this distribution, and is available at 
 * http://www.eclipse.org/legal/epl-v10.html 
 * 
 * Contributors: 
 * Ewa Matejska (PalmSource) - Adapted from LocalRunLaunchConfigurationTabGroup
 *******************************************************************************/


package org.eclipse.cdt.launch.remote;
import org.eclipse.cdt.launch.ui.CArgumentsTab;
import org.eclipse.debug.ui.AbstractLaunchConfigurationTabGroup;
import org.eclipse.debug.ui.CommonTab;
import org.eclipse.debug.ui.ILaunchConfigurationDialog;
import org.eclipse.debug.ui.ILaunchConfigurationTab;
import org.eclipse.debug.ui.sourcelookup.SourceLookupTab;

/**
 * This class defines the tab group for the Remote C++ Launch
 * Configuration.
 */
public class RemoteLaunchConfigurationTabGroup extends
		AbstractLaunchConfigurationTabGroup {
	 public void createTabs(ILaunchConfigurationDialog dialog, String mode)  {
         ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] {
                 new RemoteCMainTab(true),
                 new CArgumentsTab(),
     			 new RemoteCDebuggerTab(false),
                 new SourceLookupTab(),
                 new CommonTab()
         };
         setTabs(tabs);
	 }
}

Back to the top