]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.spreadsheet.common/src/org/simantics/spreadsheet/common/expression/node/AConstantValue.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.spreadsheet.common / src / org / simantics / spreadsheet / common / expression / node / AConstantValue.java
diff --git a/bundles/org.simantics.spreadsheet.common/src/org/simantics/spreadsheet/common/expression/node/AConstantValue.java b/bundles/org.simantics.spreadsheet.common/src/org/simantics/spreadsheet/common/expression/node/AConstantValue.java
new file mode 100644 (file)
index 0000000..a4050ce
--- /dev/null
@@ -0,0 +1,105 @@
+/*******************************************************************************\r
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
+ * in Industry THTH ry.\r
+ * All rights reserved. This program and the accompanying materials\r
+ * are made available under the terms of the Eclipse Public License v1.0\r
+ * which accompanies this distribution, and is available at\r
+ * http://www.eclipse.org/legal/epl-v10.html\r
+ *\r
+ * Contributors:\r
+ *     VTT Technical Research Centre of Finland - initial API and implementation\r
+ *******************************************************************************/\r
+/* This file was generated by SableCC (http://www.sablecc.org/). */\r
+\r
+package org.simantics.spreadsheet.common.expression.node;\r
+\r
+import org.simantics.spreadsheet.common.expression.analysis.*;\r
+\r
+@SuppressWarnings("nls")\r
+public final class AConstantValue extends PValue\r
+{\r
+    private TNumber _number_;\r
+\r
+    public AConstantValue()\r
+    {\r
+        // Constructor\r
+    }\r
+\r
+    public AConstantValue(\r
+        @SuppressWarnings("hiding") TNumber _number_)\r
+    {\r
+        // Constructor\r
+        setNumber(_number_);\r
+\r
+    }\r
+\r
+    @Override\r
+    public Object clone()\r
+    {\r
+        return new AConstantValue(\r
+            cloneNode(this._number_));\r
+    }\r
+\r
+    public void apply(Switch sw)\r
+    {\r
+        ((Analysis) sw).caseAConstantValue(this);\r
+    }\r
+\r
+    public TNumber getNumber()\r
+    {\r
+        return this._number_;\r
+    }\r
+\r
+    public void setNumber(TNumber node)\r
+    {\r
+        if(this._number_ != null)\r
+        {\r
+            this._number_.parent(null);\r
+        }\r
+\r
+        if(node != null)\r
+        {\r
+            if(node.parent() != null)\r
+            {\r
+                node.parent().removeChild(node);\r
+            }\r
+\r
+            node.parent(this);\r
+        }\r
+\r
+        this._number_ = node;\r
+    }\r
+\r
+    @Override\r
+    public String toString()\r
+    {\r
+        return ""\r
+            + toString(this._number_);\r
+    }\r
+\r
+    @Override\r
+    void removeChild(@SuppressWarnings("unused") Node child)\r
+    {\r
+        // Remove child\r
+        if(this._number_ == child)\r
+        {\r
+            this._number_ = null;\r
+            return;\r
+        }\r
+\r
+        throw new RuntimeException("Not a child.");\r
+    }\r
+\r
+    @Override\r
+    void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)\r
+    {\r
+        // Replace child\r
+        if(this._number_ == oldChild)\r
+        {\r
+            setNumber((TNumber) newChild);\r
+            return;\r
+        }\r
+\r
+        throw new RuntimeException("Not a child.");\r
+    }\r
+}\r