Since 3.1 not in use
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.ui / src / net / sourceforge / phpeclipse / xdebug / ui / XDebugTabGroup.java
1 /*
2  * Created on 25.11.2004
3  *
4  * TODO To change the template for this generated file go to
5  * Window - Preferences - Java - Code Style - Code Templates
6  */
7 package net.sourceforge.phpeclipse.xdebug.ui;
8
9 import org.eclipse.debug.ui.AbstractLaunchConfigurationTabGroup;
10 import org.eclipse.debug.ui.CommonTab;
11 import org.eclipse.debug.ui.ILaunchConfigurationDialog;
12 import org.eclipse.debug.ui.ILaunchConfigurationTab;
13 import org.eclipse.debug.ui.sourcelookup.SourceLookupTab;
14
15 /**
16  * @author Axel
17  *
18  * TODO To change the template for this generated type comment go to
19  * Window - Preferences - Java - Code Style - Code Templates
20  */
21 public class XDebugTabGroup  extends AbstractLaunchConfigurationTabGroup {
22         /* (non-Javadoc)
23          * @see org.eclipse.debug.ui.ILaunchConfigurationTabGroup#createTabs(org.eclipse.debug.ui.ILaunchConfigurationDialog, java.lang.String)
24          */
25         public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
26                 setTabs(new ILaunchConfigurationTab[] {
27                                 new XDebugMainTab(),
28                                 new SourceLookupTab(),
29                                 new CommonTab()
30                 });
31         }
32 }