Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2007-01-03 18:25:10 +0000
committerDarin Wright2007-01-03 18:25:10 +0000
commit3c1fd6473147545469cece84814c37fc1a7e9544 (patch)
treece91cc16e387307645e017b575dfc846ff4605fb /org.eclipse.debug.core
parentdfa0ea6b6208ef8bc84ff4ec2ec1036ed68b791b (diff)
downloadeclipse.platform.debug-3c1fd6473147545469cece84814c37fc1a7e9544.tar.gz
eclipse.platform.debug-3c1fd6473147545469cece84814c37fc1a7e9544.tar.xz
eclipse.platform.debug-3c1fd6473147545469cece84814c37fc1a7e9544.zip
Bug 74480 [launching] Simplify the launch experience for less technical users of Eclipse
Diffstat (limited to 'org.eclipse.debug.core')
-rw-r--r--org.eclipse.debug.core/buildnotes_platform-debug.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/org.eclipse.debug.core/buildnotes_platform-debug.html b/org.eclipse.debug.core/buildnotes_platform-debug.html
index dba0cbc7d..e0e27929e 100644
--- a/org.eclipse.debug.core/buildnotes_platform-debug.html
+++ b/org.eclipse.debug.core/buildnotes_platform-debug.html
@@ -24,6 +24,12 @@ The launch framework has been enhanced to support the following:
<li>Read-only launch configurations - for example, if a launch configuration
is stored in the file system in a read-only state, the launch configuration
cannot be edited in the launch dialog</li>
+ <li>A default launch configuration setting for a resource - allows to set and
+ get a default configuration for a resource, used for simplified launching
+ support </li>
+ <li>Nested launch configuration working copies - allows a working copy to be
+ created from a working copy that saves back to the parent working copy instead
+ of file system</li>
</ul>
<p>The following extension points have been added: </p>
<ul>
@@ -89,6 +95,15 @@ The launch framework has been enhanced to support the following:
<li>added method addModes(Set modes)</li>
<li>added method setModes(Set modes)</li>
<li>added method removeModes(Set modes)</li>
+ <li>added method getNestedWorkingCopy()</li>
+ <li>added method getParent()</li>
+ </ul>
+ </li>
+ <li>org.eclipse.debug.core.ILaunchManager
+ <ul>
+ <li>added method setDefaultConfiguration(IResource resource, ILaunchConfiguration
+ configuration)</li>
+ <li>added method getDefaultConfiguration(IResource resource)</li>
</ul>
</li>
<li>org.eclipse.debug.ui.DebugUITools

Back to the top