Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2006-12-18 19:17:57 +0000
committerDarin Wright2006-12-18 19:17:57 +0000
commit5f09392f2a97f621c84347324c025c0df8acc8ba (patch)
treea56543e2666dc89d84f8fab03e27b7ac23a5fc1b /org.eclipse.debug.core
parentfb73387af20cec4b5e12d95b35b1bede8076234b (diff)
downloadeclipse.platform.debug-5f09392f2a97f621c84347324c025c0df8acc8ba.tar.gz
eclipse.platform.debug-5f09392f2a97f621c84347324c025c0df8acc8ba.tar.xz
eclipse.platform.debug-5f09392f2a97f621c84347324c025c0df8acc8ba.zip
Bug 168434 move debug commands to core plug-in
Diffstat (limited to 'org.eclipse.debug.core')
-rw-r--r--org.eclipse.debug.core/buildnotes_platform-debug.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/org.eclipse.debug.core/buildnotes_platform-debug.html b/org.eclipse.debug.core/buildnotes_platform-debug.html
index 8e5d4452b..dba0cbc7d 100644
--- a/org.eclipse.debug.core/buildnotes_platform-debug.html
+++ b/org.eclipse.debug.core/buildnotes_platform-debug.html
@@ -159,6 +159,16 @@ The launch framework has been enhanced to support the following:
<li><code> ISuspendCommand</code></li>
<li><code> ITerminateCommand</code></li>
</ul>
+<p>Note that the &quot;use step filters&quot; setting has been moved to the <code>org.eclipse.debug.core</code>
+ plug-in from <code>org.eclipse.debug.ui</code>. This is to allow the toggle
+ step filters command to work properly in absence of the UI plug-in. The following
+ API methods have been added to <code>DebugPlugin</code>:</p>
+<ul>
+ <li><code>setUseStepFilters(boolean useStepFilters)</code></li>
+ <li><code>isUseStepFilters()</code></li>
+</ul>
+<p>The same methods that existed in <code>DebugUITools</code> now delegate to
+ these new methods.</p>
<h3>Pluggable Detail Panes</h3>
<p>The variables, registers, and expressions views in Eclipse 3.3 support pluggable
detail panes. A new extension point - <code>org.eclipse.debug.ui.detailPaneFactories</code>

Back to the top