X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.spreadsheet%2Fsrc%2Forg%2Fsimantics%2Fspreadsheet%2Fsolver%2FSpreadsheetSCLConstant.java;fp=bundles%2Forg.simantics.spreadsheet%2Fsrc%2Forg%2Fsimantics%2Fspreadsheet%2Fsolver%2FSpreadsheetSCLConstant.java;h=cc0148edbd8a4c73f33422cd4d61ce8e0bbad296;hb=e5871be84f8ba53a1c80be728bcfb67231c29279;hp=2fe8f7cae69a4d1fe374ecd2396956d5a2b621c5;hpb=fb89ec6bace6b3eef93a4c437171bb173fc861b6;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.spreadsheet/src/org/simantics/spreadsheet/solver/SpreadsheetSCLConstant.java b/bundles/org.simantics.spreadsheet/src/org/simantics/spreadsheet/solver/SpreadsheetSCLConstant.java index 2fe8f7cae..cc0148edb 100644 --- a/bundles/org.simantics.spreadsheet/src/org/simantics/spreadsheet/solver/SpreadsheetSCLConstant.java +++ b/bundles/org.simantics.spreadsheet/src/org/simantics/spreadsheet/solver/SpreadsheetSCLConstant.java @@ -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();