]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.basicexpression/src/org/simantics/basicexpression/node/AUnaryplusUnary.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.basicexpression / src / org / simantics / basicexpression / node / AUnaryplusUnary.java
diff --git a/bundles/org.simantics.basicexpression/src/org/simantics/basicexpression/node/AUnaryplusUnary.java b/bundles/org.simantics.basicexpression/src/org/simantics/basicexpression/node/AUnaryplusUnary.java
new file mode 100644 (file)
index 0000000..1cbe250
--- /dev/null
@@ -0,0 +1,137 @@
+/* This file was generated by SableCC (http://www.sablecc.org/). */\r
+\r
+package org.simantics.basicexpression.node;\r
+\r
+import org.simantics.basicexpression.analysis.*;\r
+\r
+@SuppressWarnings("nls")\r
+public final class AUnaryplusUnary extends PUnary\r
+{\r
+    private TPlus _plus_;\r
+    private PUnary _unary_;\r
+\r
+    public AUnaryplusUnary()\r
+    {\r
+        // Constructor\r
+    }\r
+\r
+    public AUnaryplusUnary(\r
+        @SuppressWarnings("hiding") TPlus _plus_,\r
+        @SuppressWarnings("hiding") PUnary _unary_)\r
+    {\r
+        // Constructor\r
+        setPlus(_plus_);\r
+\r
+        setUnary(_unary_);\r
+\r
+    }\r
+\r
+    @Override\r
+    public Object clone()\r
+    {\r
+        return new AUnaryplusUnary(\r
+            cloneNode(this._plus_),\r
+            cloneNode(this._unary_));\r
+    }\r
+\r
+    public void apply(Switch sw)\r
+    {\r
+        ((Analysis) sw).caseAUnaryplusUnary(this);\r
+    }\r
+\r
+    public TPlus getPlus()\r
+    {\r
+        return this._plus_;\r
+    }\r
+\r
+    public void setPlus(TPlus node)\r
+    {\r
+        if(this._plus_ != null)\r
+        {\r
+            this._plus_.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._plus_ = node;\r
+    }\r
+\r
+    public PUnary getUnary()\r
+    {\r
+        return this._unary_;\r
+    }\r
+\r
+    public void setUnary(PUnary node)\r
+    {\r
+        if(this._unary_ != null)\r
+        {\r
+            this._unary_.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._unary_ = node;\r
+    }\r
+\r
+    @Override\r
+    public String toString()\r
+    {\r
+        return ""\r
+            + toString(this._plus_)\r
+            + toString(this._unary_);\r
+    }\r
+\r
+    @Override\r
+    void removeChild(@SuppressWarnings("unused") Node child)\r
+    {\r
+        // Remove child\r
+        if(this._plus_ == child)\r
+        {\r
+            this._plus_ = null;\r
+            return;\r
+        }\r
+\r
+        if(this._unary_ == child)\r
+        {\r
+            this._unary_ = 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._plus_ == oldChild)\r
+        {\r
+            setPlus((TPlus) newChild);\r
+            return;\r
+        }\r
+\r
+        if(this._unary_ == oldChild)\r
+        {\r
+            setUnary((PUnary) newChild);\r
+            return;\r
+        }\r
+\r
+        throw new RuntimeException("Not a child.");\r
+    }\r
+}\r