]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.spreadsheet.common/src/org/simantics/spreadsheet/common/expression/node/Start.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.spreadsheet.common / src / org / simantics / spreadsheet / common / expression / node / Start.java
index 19e4827526da8bd7297876f76cfddf25aa574189..5fee855e8449eb81b9cc905e27524343df9d81d5 100644 (file)
-/*******************************************************************************\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
+/*******************************************************************************
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management
+ * in Industry THTH ry.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+/* This file was generated by SableCC (http://www.sablecc.org/). */
+
+package org.simantics.spreadsheet.common.expression.node;
+
+import org.simantics.spreadsheet.common.expression.analysis.*;
+
+@SuppressWarnings("nls")
+public final class Start extends Node
+{
+    private PExpression _pExpression_;
+    private EOF _eof_;
+
+    public Start()
+    {
+        // Empty body
+    }
+
+    public Start(
+        @SuppressWarnings("hiding") PExpression _pExpression_,
+        @SuppressWarnings("hiding") EOF _eof_)
+    {
+        setPExpression(_pExpression_);
+        setEOF(_eof_);
+    }
+
+    @Override
+    public Object clone()
+    {
+        return new Start(
+            cloneNode(this._pExpression_),
+            cloneNode(this._eof_));
+    }
+
+    public void apply(Switch sw)
+    {
+        ((Analysis) sw).caseStart(this);
+    }
+
+    public PExpression getPExpression()
+    {
+        return this._pExpression_;
+    }
+
+    public void setPExpression(PExpression node)
+    {
+        if(this._pExpression_ != null)
+        {
+            this._pExpression_.parent(null);
+        }
+
+        if(node != null)
+        {
+            if(node.parent() != null)
+            {
+                node.parent().removeChild(node);
+            }
+
+            node.parent(this);
+        }
+
+        this._pExpression_ = node;
+    }
+
+    public EOF getEOF()
+    {
+        return this._eof_;
+    }
+
+    public void setEOF(EOF node)
+    {
+        if(this._eof_ != null)
+        {
+            this._eof_.parent(null);
+        }
+
+        if(node != null)
+        {
+            if(node.parent() != null)
+            {
+                node.parent().removeChild(node);
+            }
+
+            node.parent(this);
+        }
+
+        this._eof_ = node;
+    }
+
+    @Override
+    void removeChild(Node child)
+    {
+        if(this._pExpression_ == child)
+        {
+            this._pExpression_ = null;
+            return;
+        }
+
+        if(this._eof_ == child)
+        {
+            this._eof_ = null;
+            return;
+        }
+
+        throw new RuntimeException("Not a child.");
+    }
+
+    @Override
+    void replaceChild(Node oldChild, Node newChild)
+    {
+        if(this._pExpression_ == oldChild)
+        {
+            setPExpression((PExpression) newChild);
+            return;
+        }
+
+        if(this._eof_ == oldChild)
+        {
+            setEOF((EOF) newChild);
+            return;
+        }
+
+        throw new RuntimeException("Not a child.");
+    }
+
+    @Override
+    public String toString()
+    {
+        return "" +
+            toString(this._pExpression_) +
+            toString(this._eof_);
+    }
+}