use of org.eclipse.debug.ui.sourcelookup.SourceLookupTab in project linuxtools by eclipse.
the class RemoteProxyProfileLaunchConfigurationTabGroup method createTabs.
@Override
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
ArrayList<AbstractLaunchConfigurationTab> tabs = new ArrayList<>();
tabs.add(new RemoteProxyCMainTab());
tabs.add(new CArgumentsTab());
tabs.addAll(Arrays.asList(getProfileTabs()));
tabs.add(new EnvironmentTab());
tabs.add(new SourceLookupTab());
tabs.add(new CommonTab());
setTabs(tabs.toArray(new AbstractLaunchConfigurationTab[tabs.size()]));
}
use of org.eclipse.debug.ui.sourcelookup.SourceLookupTab 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);
}
use of org.eclipse.debug.ui.sourcelookup.SourceLookupTab in project linuxtools by eclipse.
the class ProfileLaunchConfigurationTabGroup method createTabs.
@Override
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
ArrayList<AbstractLaunchConfigurationTab> tabs = new ArrayList<>();
tabs.add(new CMainTab2());
tabs.add(new CArgumentsTab());
tabs.addAll(Arrays.asList(getProfileTabs()));
tabs.add(new EnvironmentTab());
tabs.add(new SourceLookupTab());
tabs.add(new CommonTab());
setTabs(tabs.toArray(new AbstractLaunchConfigurationTab[tabs.size()]));
}
Aggregations