Importing the XDebugProxy code in the HEAD. The repo was tagged with T_BEFORE_XDEBUGP...
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.ui / src / net / sourceforge / phpeclipse / xdebug / ui / php / launching / PHPRemoteTabGroup.java
1 package net.sourceforge.phpeclipse.xdebug.ui.php.launching;
2
3 import org.eclipse.debug.ui.AbstractLaunchConfigurationTabGroup;
4 import org.eclipse.debug.ui.CommonTab;
5 import org.eclipse.debug.ui.ILaunchConfigurationDialog;
6 import org.eclipse.debug.ui.ILaunchConfigurationTab;
7 import org.eclipse.debug.ui.sourcelookup.SourceLookupTab;
8
9 public class PHPRemoteTabGroup extends AbstractLaunchConfigurationTabGroup {
10
11         public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
12                 setTabs(new ILaunchConfigurationTab[] {
13                                 new PHPRemoteDebug(),
14                                 new PHPPathMapTab(),
15                                 new SourceLookupTab(),
16                                 new CommonTab()
17                 });
18
19         }
20
21 }