Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.core.variables/src/org/eclipse/core/variables/IValueVariable.java')
-rw-r--r--org.eclipse.core.variables/src/org/eclipse/core/variables/IValueVariable.java20
1 files changed, 10 insertions, 10 deletions
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 ba4e1694b..a0118c455 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
@@ -58,34 +58,34 @@ public interface IValueVariable extends IStringVariable {
* @param value variable value
*/
public void setValue(String value);
-
+
/**
* Returns the value of this variable, or <code>null</code> if none.
- *
+ *
* @return the value of this variable, or <code>null</code> if none
*/
public String getValue();
-
+
/**
* Returns whether this variable was contributed by an extension.
- *
+ *
* @return whether this variable was contributed by an extension
*/
public boolean isContributed();
-
+
/**
* Returns whether this variable is read only.
- *
+ *
* @return whether this variable is read only
* @since 3.3
*/
public boolean isReadOnly();
-
+
/**
* Sets the description of this variable to the given value.
- *
+ *
* @param description variable description, possibly <code>null</code>
*/
- public void setDescription(String description);
-
+ public void setDescription(String description);
+
}

Back to the top