use of org.eclipse.cdt.launch.ui.CArgumentsTab 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.cdt.launch.ui.CArgumentsTab 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