]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.spreadsheet/src/org/simantics/spreadsheet/solver/SpreadsheetSCLConstant.java
Adopt spreadsheet changes made in Balas development
[simantics/platform.git] / bundles / org.simantics.spreadsheet / src / org / simantics / spreadsheet / solver / SpreadsheetSCLConstant.java
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
new file mode 100644 (file)
index 0000000..cc0148e
--- /dev/null
@@ -0,0 +1,60 @@
+package org.simantics.spreadsheet.solver;
+
+import java.io.Serializable;
+
+import org.simantics.databoard.Bindings;
+import org.simantics.databoard.binding.Binding;
+
+public class SpreadsheetSCLConstant implements Serializable {
+
+    private static final long serialVersionUID = 428064772427245449L;
+
+    private String expression;
+    private Object content;
+
+    public static final Binding BINDING = Bindings.getBindingUnchecked(SpreadsheetSCLConstant.class);
+
+    public SpreadsheetSCLConstant(String expression, Object object) {
+        this.content = object;
+        this.expression = expression;
+    }
+
+    public Object getContent() {
+        return content;
+    }
+    
+    public String getExpression() {
+        return expression;
+    }
+    
+    @Override
+    public String toString() {
+        return super.toString();
+    }
+
+    @Override
+    public int hashCode() {
+        final int prime = 31;
+        int result = 1;
+        result = prime * result + ((expression == null) ? 0 : expression.hashCode());
+        return result;
+    }
+
+    @Override
+    public boolean equals(Object obj) {
+        if (this == obj)
+            return true;
+        if (obj == null)
+            return false;
+        if (getClass() != obj.getClass())
+            return false;
+        SpreadsheetSCLConstant other = (SpreadsheetSCLConstant) obj;
+        if (expression == null) {
+            if (other.expression != null)
+                return false;
+        } else if (!expression.equals(other.expression))
+            return false;
+        return true;
+    }
+
+}