]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/elaboration/modules/MethodImplementation.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.scl.compiler / src / org / simantics / scl / compiler / elaboration / modules / MethodImplementation.java
1 package org.simantics.scl.compiler.elaboration.modules;\r
2 \r
3 import org.simantics.scl.compiler.common.names.Name;\r
4 \r
5 public class MethodImplementation {\r
6     \r
7     public final Name name;\r
8     public final boolean isDefault;\r
9     private SCLValue value;\r
10     \r
11     public MethodImplementation(Name name, boolean isDefault) {\r
12         this.name = name;\r
13         this.isDefault = isDefault;\r
14     }\r
15 \r
16     public SCLValue getValue() {\r
17         return value;\r
18     }\r
19     \r
20     public void setValue(SCLValue value) {\r
21         this.value = value;\r
22     }\r
23     \r
24 }\r