Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IWatchExpressionFactoryAdapter2.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IWatchExpressionFactoryAdapter2.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IWatchExpressionFactoryAdapter2.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IWatchExpressionFactoryAdapter2.java
index 9c30fde8e..13e810732 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IWatchExpressionFactoryAdapter2.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IWatchExpressionFactoryAdapter2.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
* Wind River Systems - integration with non-standard debug models (Bug 209883)
@@ -16,9 +16,9 @@ import org.eclipse.core.runtime.CoreException;
/**
* An optional adapter used to create a watch expression for a selected element.
* <p>
- * The 'Create Watch Expression' action is enabled for an adaptable element
+ * The 'Create Watch Expression' action is enabled for an adaptable element
* that have an associated <code>IWatchExpressionFactoryAdapter2</code>.
- *
+ *
* When a watch expression factory adapter is available for an element, the factory is
* consulted to create a watch expression for that element.
* </p>
@@ -28,11 +28,11 @@ import org.eclipse.core.runtime.CoreException;
* @since 3.4
*/
public interface IWatchExpressionFactoryAdapter2 {
-
+
/**
* Creates and returns an expression for the specified variable
* which is used to created an {@link org.eclipse.debug.core.model.IWatchExpression}.
- *
+ *
* @param element element a watch expression is required for
* @return text used to create a watch expression
* @exception org.eclipse.core.runtime.CoreException if unable to create a watch
@@ -42,7 +42,7 @@ public interface IWatchExpressionFactoryAdapter2 {
/**
* Returns whether a watch expression can be created for the specified variable.
- *
+ *
* @param variable the specified variable
* @return whether an expression can be created
*/

Back to the top