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.java10
1 files changed, 5 insertions, 5 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 a0118c455..d488f0d95 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
@@ -57,21 +57,21 @@ public interface IValueVariable extends IStringVariable {
*
* @param value variable value
*/
- public void setValue(String value);
+ 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();
+ String getValue();
/**
* Returns whether this variable was contributed by an extension.
*
* @return whether this variable was contributed by an extension
*/
- public boolean isContributed();
+ boolean isContributed();
/**
* Returns whether this variable is read only.
@@ -79,13 +79,13 @@ public interface IValueVariable extends IStringVariable {
* @return whether this variable is read only
* @since 3.3
*/
- public boolean isReadOnly();
+ 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);
+ void setDescription(String description);
}

Back to the top