Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugModelPresentationExtension.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugModelPresentationExtension.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugModelPresentationExtension.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugModelPresentationExtension.java
index 144dad097..06d625c4f 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugModelPresentationExtension.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugModelPresentationExtension.java
@@ -4,7 +4,7 @@
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
- *
+ *
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
@@ -14,11 +14,11 @@ package org.eclipse.debug.ui;
* Optional extension for an {@link IDebugModelPresentation}. Dynamically controls
* whether labels are computed in a UI thread. The debug platform calls debug model
* presentation label related methods that do not implement this interface in a
- * <b>non-UI</b> thread.
+ * <b>non-UI</b> thread.
* <p>
* For example, some models may require at least one access in a UI thread to initialize
* an image registry at which point they may be able to provide labels in a non-UI
- * thread.
+ * thread.
* </p>
* <p>
* Clients implementing a debug model presentation should also implement
@@ -33,7 +33,7 @@ public interface IDebugModelPresentationExtension extends IDebugModelPresentatio
* foreground, background, etc.), for the specified element. When <code>true</code> is
* returned, label related methods will be called in the UI thread, otherwise methods
* may be called in a non-UI thread.
- *
+ *
* @param element the element a label is to be retrieved for
* @return whether label related methods should be called on the UI thread
*/

Back to the top