]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.spreadsheet.common/src/org/simantics/spreadsheet/common/expression/node/AMultiRange.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.spreadsheet.common / src / org / simantics / spreadsheet / common / expression / node / AMultiRange.java
diff --git a/bundles/org.simantics.spreadsheet.common/src/org/simantics/spreadsheet/common/expression/node/AMultiRange.java b/bundles/org.simantics.spreadsheet.common/src/org/simantics/spreadsheet/common/expression/node/AMultiRange.java
new file mode 100644 (file)
index 0000000..42996ff
--- /dev/null
@@ -0,0 +1,191 @@
+/*******************************************************************************\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 AMultiRange extends PRange\r
+{\r
+    private TCell _left_;\r
+    private TColon _colon_;\r
+    private TCell _right_;\r
+\r
+    public AMultiRange()\r
+    {\r
+        // Constructor\r
+    }\r
+\r
+    public AMultiRange(\r
+        @SuppressWarnings("hiding") TCell _left_,\r
+        @SuppressWarnings("hiding") TColon _colon_,\r
+        @SuppressWarnings("hiding") TCell _right_)\r
+    {\r
+        // Constructor\r
+        setLeft(_left_);\r
+\r
+        setColon(_colon_);\r
+\r
+        setRight(_right_);\r
+\r
+    }\r
+\r
+    @Override\r
+    public Object clone()\r
+    {\r
+        return new AMultiRange(\r
+            cloneNode(this._left_),\r
+            cloneNode(this._colon_),\r
+            cloneNode(this._right_));\r
+    }\r
+\r
+    public void apply(Switch sw)\r
+    {\r
+        ((Analysis) sw).caseAMultiRange(this);\r
+    }\r
+\r
+    public TCell getLeft()\r
+    {\r
+        return this._left_;\r
+    }\r
+\r
+    public void setLeft(TCell node)\r
+    {\r
+        if(this._left_ != null)\r
+        {\r
+            this._left_.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._left_ = node;\r
+    }\r
+\r
+    public TColon getColon()\r
+    {\r
+        return this._colon_;\r
+    }\r
+\r
+    public void setColon(TColon node)\r
+    {\r
+        if(this._colon_ != null)\r
+        {\r
+            this._colon_.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._colon_ = node;\r
+    }\r
+\r
+    public TCell getRight()\r
+    {\r
+        return this._right_;\r
+    }\r
+\r
+    public void setRight(TCell node)\r
+    {\r
+        if(this._right_ != null)\r
+        {\r
+            this._right_.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._right_ = node;\r
+    }\r
+\r
+    @Override\r
+    public String toString()\r
+    {\r
+        return ""\r
+            + toString(this._left_)\r
+            + toString(this._colon_)\r
+            + toString(this._right_);\r
+    }\r
+\r
+    @Override\r
+    void removeChild(@SuppressWarnings("unused") Node child)\r
+    {\r
+        // Remove child\r
+        if(this._left_ == child)\r
+        {\r
+            this._left_ = null;\r
+            return;\r
+        }\r
+\r
+        if(this._colon_ == child)\r
+        {\r
+            this._colon_ = null;\r
+            return;\r
+        }\r
+\r
+        if(this._right_ == child)\r
+        {\r
+            this._right_ = 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._left_ == oldChild)\r
+        {\r
+            setLeft((TCell) newChild);\r
+            return;\r
+        }\r
+\r
+        if(this._colon_ == oldChild)\r
+        {\r
+            setColon((TColon) newChild);\r
+            return;\r
+        }\r
+\r
+        if(this._right_ == oldChild)\r
+        {\r
+            setRight((TCell) newChild);\r
+            return;\r
+        }\r
+\r
+        throw new RuntimeException("Not a child.");\r
+    }\r
+}\r