]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.expressions/src/org/simantics/scl/expressions/ContextualValue.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.scl.expressions / src / org / simantics / scl / expressions / ContextualValue.java
index b339b459ca41dd4d61a2e567b4515cf4c6ddcc46..ac90fb554cbc5984a88bb437bac230c8ac9fbfdf 100644 (file)
@@ -1,25 +1,25 @@
-package org.simantics.scl.expressions;\r
-\r
-import org.simantics.scl.compiler.types.Type;\r
-\r
-/**\r
- * A value that depends on some context. For example SCL expression\r
- * can be compiled into contextual value where the actual value\r
- * depends on the free variables of the expression.\r
- * @author Hannu Niemistö\r
- * @param <Context>\r
- */\r
-public interface ContextualValue<Context> {\r
-    /**\r
-     * SCL type of the value.\r
-     * @return\r
-     */\r
-    Type getType();\r
-    \r
-    /**\r
-     * Evaluates the value in the given context.\r
-     * @param context\r
-     * @return\r
-     */\r
-    Object getValue(Context context);\r
-}\r
+package org.simantics.scl.expressions;
+
+import org.simantics.scl.compiler.types.Type;
+
+/**
+ * A value that depends on some context. For example SCL expression
+ * can be compiled into contextual value where the actual value
+ * depends on the free variables of the expression.
+ * @author Hannu Niemist&ouml;
+ * @param <Context>
+ */
+public interface ContextualValue<Context> {
+    /**
+     * SCL type of the value.
+     * @return
+     */
+    Type getType();
+    
+    /**
+     * Evaluates the value in the given context.
+     * @param context
+     * @return
+     */
+    Object getValue(Context context);
+}