]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/elaboration/modules/MethodImplementation.java
(refs #7260) Added a new DerivedProperty to SCLValues
[simantics/platform.git] / bundles / org.simantics.scl.compiler / src / org / simantics / scl / compiler / elaboration / modules / MethodImplementation.java
old mode 100755 (executable)
new mode 100644 (file)
index 6359171..b9b0269
@@ -1,24 +1,14 @@
-package org.simantics.scl.compiler.elaboration.modules;\r
-\r
-import org.simantics.scl.compiler.common.names.Name;\r
-\r
-public class MethodImplementation {\r
-    \r
-    public final Name name;\r
-    public final boolean isDefault;\r
-    private SCLValue value;\r
-    \r
-    public MethodImplementation(Name name, boolean isDefault) {\r
-        this.name = name;\r
-        this.isDefault = isDefault;\r
-    }\r
-\r
-    public SCLValue getValue() {\r
-        return value;\r
-    }\r
-    \r
-    public void setValue(SCLValue value) {\r
-        this.value = value;\r
-    }\r
-    \r
-}\r
+package org.simantics.scl.compiler.elaboration.modules;
+
+import org.simantics.scl.compiler.common.names.Name;
+
+public class MethodImplementation {
+    
+    public final Name name;
+    public final boolean isDefault;
+    
+    public MethodImplementation(Name name, boolean isDefault) {
+        this.name = name;
+        this.isDefault = isDefault;
+    }
+}