]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.spreadsheet.common/src/org/simantics/spreadsheet/common/expression/node/Start.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.spreadsheet.common / src / org / simantics / spreadsheet / common / expression / node / Start.java
diff --git a/bundles/org.simantics.spreadsheet.common/src/org/simantics/spreadsheet/common/expression/node/Start.java b/bundles/org.simantics.spreadsheet.common/src/org/simantics/spreadsheet/common/expression/node/Start.java
new file mode 100644 (file)
index 0000000..19e4827
--- /dev/null
@@ -0,0 +1,143 @@
+/*******************************************************************************\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 Start extends Node\r
+{\r
+    private PExpression _pExpression_;\r
+    private EOF _eof_;\r
+\r
+    public Start()\r
+    {\r
+        // Empty body\r
+    }\r
+\r
+    public Start(\r
+        @SuppressWarnings("hiding") PExpression _pExpression_,\r
+        @SuppressWarnings("hiding") EOF _eof_)\r
+    {\r
+        setPExpression(_pExpression_);\r
+        setEOF(_eof_);\r
+    }\r
+\r
+    @Override\r
+    public Object clone()\r
+    {\r
+        return new Start(\r
+            cloneNode(this._pExpression_),\r
+            cloneNode(this._eof_));\r
+    }\r
+\r
+    public void apply(Switch sw)\r
+    {\r
+        ((Analysis) sw).caseStart(this);\r
+    }\r
+\r
+    public PExpression getPExpression()\r
+    {\r
+        return this._pExpression_;\r
+    }\r
+\r
+    public void setPExpression(PExpression node)\r
+    {\r
+        if(this._pExpression_ != null)\r
+        {\r
+            this._pExpression_.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._pExpression_ = node;\r
+    }\r
+\r
+    public EOF getEOF()\r
+    {\r
+        return this._eof_;\r
+    }\r
+\r
+    public void setEOF(EOF node)\r
+    {\r
+        if(this._eof_ != null)\r
+        {\r
+            this._eof_.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._eof_ = node;\r
+    }\r
+\r
+    @Override\r
+    void removeChild(Node child)\r
+    {\r
+        if(this._pExpression_ == child)\r
+        {\r
+            this._pExpression_ = null;\r
+            return;\r
+        }\r
+\r
+        if(this._eof_ == child)\r
+        {\r
+            this._eof_ = null;\r
+            return;\r
+        }\r
+\r
+        throw new RuntimeException("Not a child.");\r
+    }\r
+\r
+    @Override\r
+    void replaceChild(Node oldChild, Node newChild)\r
+    {\r
+        if(this._pExpression_ == oldChild)\r
+        {\r
+            setPExpression((PExpression) newChild);\r
+            return;\r
+        }\r
+\r
+        if(this._eof_ == oldChild)\r
+        {\r
+            setEOF((EOF) newChild);\r
+            return;\r
+        }\r
+\r
+        throw new RuntimeException("Not a child.");\r
+    }\r
+\r
+    @Override\r
+    public String toString()\r
+    {\r
+        return "" +\r
+            toString(this._pExpression_) +\r
+            toString(this._eof_);\r
+    }\r
+}\r