use of org.eclipse.linuxtools.internal.valgrind.launch.ValgrindOptionsTab in project linuxtools by eclipse.
the class LaunchConfigTabTest method prep.
@Before
public void prep() throws Exception {
// $NON-NLS-1$
proj = createProjectAndBuild("alloctest");
config = createConfiguration(proj.getProject());
testShell = new Shell(Display.getDefault());
testShell.setLayout(new GridLayout());
tab = new ValgrindOptionsTab();
}
use of org.eclipse.linuxtools.internal.valgrind.launch.ValgrindOptionsTab in project linuxtools by eclipse.
the class MassifLaunchShortcut method setDefaultProfileAttributes.
@Override
protected void setDefaultProfileAttributes(ILaunchConfigurationWorkingCopy wc) throws CoreException {
ValgrindOptionsTab tab = new ValgrindOptionsTab();
tab.setDefaults(wc);
ILaunchConfigurationTab defaultTab = ValgrindLaunchPlugin.getDefault().getToolPage(MassifPlugin.TOOL_ID);
defaultTab.setDefaults(wc);
}
use of org.eclipse.linuxtools.internal.valgrind.launch.ValgrindOptionsTab in project linuxtools by eclipse.
the class LaunchConfigTabTest method setUpProject.
@Before
public void setUpProject() throws Exception {
// $NON-NLS-1$
proj = createProjectAndBuild("basicTest");
config = createConfiguration(proj.getProject());
testShell = new Shell(Display.getDefault());
testShell.setLayout(new GridLayout());
tab = new ValgrindOptionsTab();
}
use of org.eclipse.linuxtools.internal.valgrind.launch.ValgrindOptionsTab in project linuxtools by eclipse.
the class LaunchConfigTabTest method prep.
@Before
public void prep() throws Exception {
// $NON-NLS-1$
proj = createProjectAndBuild("cpptest");
config = createConfiguration(proj.getProject());
testShell = new Shell(Display.getDefault());
testShell.setLayout(new GridLayout());
tab = new ValgrindOptionsTab();
}
use of org.eclipse.linuxtools.internal.valgrind.launch.ValgrindOptionsTab in project linuxtools by eclipse.
the class CachegrindLaunchShortcut method setDefaultProfileAttributes.
@Override
protected void setDefaultProfileAttributes(ILaunchConfigurationWorkingCopy wc) throws CoreException {
ValgrindOptionsTab tab = new ValgrindOptionsTab();
tab.setDefaults(wc);
ILaunchConfigurationTab defaultTab = ValgrindLaunchPlugin.getDefault().getToolPage(CachegrindPlugin.TOOL_ID);
defaultTab.setDefaults(wc);
}
Aggregations