Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2008-03-24 17:52:58 +0000
committerDarin Wright2008-03-24 17:52:58 +0000
commitbb2fc277c63b70a77b275855373f718759fb69a3 (patch)
treeb096b44c168e6db4dc57cdf4c3f3b38fee781d8d /org.eclipse.core.variables/src
parent4f4aed2d1567cff282871da93e87315df950f8f9 (diff)
downloadeclipse.platform.debug-bb2fc277c63b70a77b275855373f718759fb69a3.tar.gz
eclipse.platform.debug-bb2fc277c63b70a77b275855373f718759fb69a3.tar.xz
eclipse.platform.debug-bb2fc277c63b70a77b275855373f718759fb69a3.zip
javadoc updates and plug-in version increment
Diffstat (limited to 'org.eclipse.core.variables/src')
-rw-r--r--org.eclipse.core.variables/src/org/eclipse/core/variables/IDynamicVariable.java4
-rw-r--r--org.eclipse.core.variables/src/org/eclipse/core/variables/IStringVariable.java3
-rw-r--r--org.eclipse.core.variables/src/org/eclipse/core/variables/IStringVariableManager.java3
-rw-r--r--org.eclipse.core.variables/src/org/eclipse/core/variables/IValueVariable.java3
4 files changed, 2 insertions, 11 deletions
diff --git a/org.eclipse.core.variables/src/org/eclipse/core/variables/IDynamicVariable.java b/org.eclipse.core.variables/src/org/eclipse/core/variables/IDynamicVariable.java
index f5f93b970..3aecffb64 100644
--- a/org.eclipse.core.variables/src/org/eclipse/core/variables/IDynamicVariable.java
+++ b/org.eclipse.core.variables/src/org/eclipse/core/variables/IDynamicVariable.java
@@ -30,8 +30,8 @@ import org.eclipse.core.runtime.CoreException;
* </pre>
* </p>
* <p>
- * Clients are not intended to implement this interface. Instead, clients contributing
- * a dynamic variable provide an implementation of {@link org.eclipse.core.variables.IDynamicVariableResolver}.
+ * Clients contributing a dynamic variable provide an implementation of
+ * {@link org.eclipse.core.variables.IDynamicVariableResolver}.
* </p>
* @since 3.0
* @noimplement This interface is not intended to be implemented by clients.
diff --git a/org.eclipse.core.variables/src/org/eclipse/core/variables/IStringVariable.java b/org.eclipse.core.variables/src/org/eclipse/core/variables/IStringVariable.java
index 0be6d6c56..41f9dc352 100644
--- a/org.eclipse.core.variables/src/org/eclipse/core/variables/IStringVariable.java
+++ b/org.eclipse.core.variables/src/org/eclipse/core/variables/IStringVariable.java
@@ -34,9 +34,6 @@ package org.eclipse.core.variables;
* may accept an argument.</li>
* </ul>
* </p>
- * <p>
- * Clients are not intended to implement this interface.
- * </p>
* @since 3.0
* @noimplement This interface is not intended to be implemented by clients.
*/
diff --git a/org.eclipse.core.variables/src/org/eclipse/core/variables/IStringVariableManager.java b/org.eclipse.core.variables/src/org/eclipse/core/variables/IStringVariableManager.java
index bcc0748a3..36f8bbb55 100644
--- a/org.eclipse.core.variables/src/org/eclipse/core/variables/IStringVariableManager.java
+++ b/org.eclipse.core.variables/src/org/eclipse/core/variables/IStringVariableManager.java
@@ -14,9 +14,6 @@ import org.eclipse.core.runtime.CoreException;
/**
* Registry for string variables.
- * <p>
- * Clients are not intended to implement this interface.
- * </p>
* @since 3.0
* @noimplement This interface is not intended to be implemented by clients.
*/
diff --git a/org.eclipse.core.variables/src/org/eclipse/core/variables/IValueVariable.java b/org.eclipse.core.variables/src/org/eclipse/core/variables/IValueVariable.java
index bbb32dcaa..868a4f663 100644
--- a/org.eclipse.core.variables/src/org/eclipse/core/variables/IValueVariable.java
+++ b/org.eclipse.core.variables/src/org/eclipse/core/variables/IValueVariable.java
@@ -46,9 +46,6 @@ package org.eclipse.core.variables;
* &lt;/extension&gt;
* </pre>
* </p>
- * <p>
- * Clients are not intended to implement this interface.
- * </p>
* @since 3.0
* @noimplement This interface is not intended to be implemented by clients.
*/

Back to the top