summaryrefslogtreecommitdiff
path: root/eaaf_core/src/test/java/at/gv/egiz/eaaf/core/impl/idp/process/spring/test/ExpressionContextAdapter.java
diff options
context:
space:
mode:
Diffstat (limited to 'eaaf_core/src/test/java/at/gv/egiz/eaaf/core/impl/idp/process/spring/test/ExpressionContextAdapter.java')
-rw-r--r--eaaf_core/src/test/java/at/gv/egiz/eaaf/core/impl/idp/process/spring/test/ExpressionContextAdapter.java14
1 files changed, 8 insertions, 6 deletions
diff --git a/eaaf_core/src/test/java/at/gv/egiz/eaaf/core/impl/idp/process/spring/test/ExpressionContextAdapter.java b/eaaf_core/src/test/java/at/gv/egiz/eaaf/core/impl/idp/process/spring/test/ExpressionContextAdapter.java
index c00cc628..fff256bf 100644
--- a/eaaf_core/src/test/java/at/gv/egiz/eaaf/core/impl/idp/process/spring/test/ExpressionContextAdapter.java
+++ b/eaaf_core/src/test/java/at/gv/egiz/eaaf/core/impl/idp/process/spring/test/ExpressionContextAdapter.java
@@ -19,15 +19,16 @@
package at.gv.egiz.eaaf.core.impl.idp.process.spring.test;
-
import java.io.Serializable;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
+
import at.gv.egiz.eaaf.core.api.idp.process.ExpressionEvaluationContext;
/**
- * Adapter class for {@link ExpressionEvaluationContext}. Intended to be used for testing purposes.
+ * Adapter class for {@link ExpressionEvaluationContext}. Intended to be used
+ * for testing purposes.
*
* @author tknall
*
@@ -40,11 +41,12 @@ public class ExpressionContextAdapter implements ExpressionEvaluationContext {
Collections.synchronizedMap(new HashMap<String, Serializable>());
/**
- * Returns a certain {@link Serializable} object associated with a certain {@code key}.
+ * Returns a certain {@link Serializable} object associated with a certain
+ * {@code key}.
*
* @param key The key.
- * @return The object or {@code null} if no object was found stored with that key or if a
- * {@code null} value was stored.
+ * @return The object or {@code null} if no object was found stored with that
+ * key or if a {@code null} value was stored.
*/
Serializable get(final String key) {
return ctxData.get(key);
@@ -53,7 +55,7 @@ public class ExpressionContextAdapter implements ExpressionEvaluationContext {
/**
* Stores a {@link Serializable} with a certain {@code key}.
*
- * @param key The key.
+ * @param key The key.
* @param object The object.
*/
void put(final String key, final Serializable object) {