Search in sources :

Example 1 with JavaArgumentsTab

use of org.eclipse.jdt.debug.ui.launchConfigurations.JavaArgumentsTab in project sling by apache.

the class SlingLaunchpadLaunchConfigurationTabGroup method createTabs.

@Override
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
    ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[6];
    tabs[0] = new ServerLaunchConfigurationTab(new String[] { LAUNCHPAD_SERVER_ID });
    tabs[0].setLaunchConfigurationDialog(dialog);
    tabs[1] = new JavaArgumentsTab();
    tabs[1].setLaunchConfigurationDialog(dialog);
    tabs[2] = new JavaClasspathTab();
    tabs[2].setLaunchConfigurationDialog(dialog);
    tabs[3] = new SourceLookupTab();
    tabs[3].setLaunchConfigurationDialog(dialog);
    tabs[4] = new EnvironmentTab();
    tabs[4].setLaunchConfigurationDialog(dialog);
    tabs[5] = new CommonTab();
    tabs[5].setLaunchConfigurationDialog(dialog);
    setTabs(tabs);
}
Also used : JavaArgumentsTab(org.eclipse.jdt.debug.ui.launchConfigurations.JavaArgumentsTab) SourceLookupTab(org.eclipse.debug.ui.sourcelookup.SourceLookupTab) EnvironmentTab(org.eclipse.debug.ui.EnvironmentTab) CommonTab(org.eclipse.debug.ui.CommonTab) JavaClasspathTab(org.eclipse.jdt.debug.ui.launchConfigurations.JavaClasspathTab) ServerLaunchConfigurationTab(org.eclipse.wst.server.ui.ServerLaunchConfigurationTab) ILaunchConfigurationTab(org.eclipse.debug.ui.ILaunchConfigurationTab)

Aggregations

CommonTab (org.eclipse.debug.ui.CommonTab)1 EnvironmentTab (org.eclipse.debug.ui.EnvironmentTab)1 ILaunchConfigurationTab (org.eclipse.debug.ui.ILaunchConfigurationTab)1 SourceLookupTab (org.eclipse.debug.ui.sourcelookup.SourceLookupTab)1 JavaArgumentsTab (org.eclipse.jdt.debug.ui.launchConfigurations.JavaArgumentsTab)1 JavaClasspathTab (org.eclipse.jdt.debug.ui.launchConfigurations.JavaClasspathTab)1 ServerLaunchConfigurationTab (org.eclipse.wst.server.ui.ServerLaunchConfigurationTab)1