Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/facet/org.eclipse.papyrus.emf.facet.query.java.core/src/org/eclipse/papyrus/emf/facet/query/java/core/IParameterValueList.java')
-rw-r--r--plugins/facet/org.eclipse.papyrus.emf.facet.query.java.core/src/org/eclipse/papyrus/emf/facet/query/java/core/IParameterValueList.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.query.java.core/src/org/eclipse/papyrus/emf/facet/query/java/core/IParameterValueList.java b/plugins/facet/org.eclipse.papyrus.emf.facet.query.java.core/src/org/eclipse/papyrus/emf/facet/query/java/core/IParameterValueList.java
index c709172ef69..3d4f71e6f89 100644
--- a/plugins/facet/org.eclipse.papyrus.emf.facet.query.java.core/src/org/eclipse/papyrus/emf/facet/query/java/core/IParameterValueList.java
+++ b/plugins/facet/org.eclipse.papyrus.emf.facet.query.java.core/src/org/eclipse/papyrus/emf/facet/query/java/core/IParameterValueList.java
@@ -19,7 +19,7 @@ import org.eclipse.papyrus.emf.facet.efacet.ParameterValue;
/**
* List of query parameters, with two methods for direct access to value or
* parameter by name.
- *
+ *
* @deprecated cf. https://bugs.eclipse.org/bugs/show_bug.cgi?id=374678
*/
@Deprecated
@@ -29,7 +29,7 @@ public interface IParameterValueList extends List<ParameterValue> {
/**
* Return the value of the parameter with the specified name.
- *
+ *
* @param name
* the name of the parameter
* @return the value, or <code>null</code> if there is no parameter with
@@ -39,7 +39,7 @@ public interface IParameterValueList extends List<ParameterValue> {
/**
* Return the parameter with the specified name.
- *
+ *
* @param name
* the name of the parameter
* @return the parameter, or <code>null</code> if there is no parameter with
@@ -49,7 +49,7 @@ public interface IParameterValueList extends List<ParameterValue> {
/**
* Return the parameter corresponding to the given parameter declaration.
- *
+ *
* @param parameter
* the parameter declaration
* @return the parameter, or <code>null</code> if the given parameter
@@ -59,7 +59,7 @@ public interface IParameterValueList extends List<ParameterValue> {
/**
* Return the value of a parameter
- *
+ *
* @param parameter
* the parameter
* @return the value of the parameter

Back to the top