]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.spreadsheet/src/org/simantics/spreadsheet/solver/SpreadsheetSCLConstant.java
ExternalRef corrections
[simantics/platform.git] / bundles / org.simantics.spreadsheet / src / org / simantics / spreadsheet / solver / SpreadsheetSCLConstant.java
index 2fe8f7cae69a4d1fe374ecd2396956d5a2b621c5..cc0148edbd8a4c73f33422cd4d61ce8e0bbad296 100644 (file)
@@ -9,8 +9,8 @@ public class SpreadsheetSCLConstant implements Serializable {
 
     private static final long serialVersionUID = 428064772427245449L;
 
-    public String expression;
-    public Object content;
+    private String expression;
+    private Object content;
 
     public static final Binding BINDING = Bindings.getBindingUnchecked(SpreadsheetSCLConstant.class);
 
@@ -19,6 +19,14 @@ public class SpreadsheetSCLConstant implements Serializable {
         this.expression = expression;
     }
 
+    public Object getContent() {
+        return content;
+    }
+    
+    public String getExpression() {
+        return expression;
+    }
+    
     @Override
     public String toString() {
         return super.toString();