| 1 | /* This file was generated by SableCC (http://www.sablecc.org/). */ |
| 2 | |
| 3 | package uk.co.zonetora.fj.ast.node; |
| 4 | |
| 5 | import uk.co.zonetora.fj.ast.analysis.*; |
| 6 | |
| 7 | public final class X1PCommaTerm extends XPCommaTerm |
| 8 | { |
| 9 | private XPCommaTerm _xPCommaTerm_; |
| 10 | private PCommaTerm _pCommaTerm_; |
| 11 | |
| 12 | public X1PCommaTerm() |
| 13 | { |
| 14 | } |
| 15 | |
| 16 | public X1PCommaTerm( |
| 17 | XPCommaTerm _xPCommaTerm_, |
| 18 | PCommaTerm _pCommaTerm_) |
| 19 | { |
| 20 | setXPCommaTerm(_xPCommaTerm_); |
| 21 | setPCommaTerm(_pCommaTerm_); |
| 22 | } |
| 23 | |
| 24 | public Object clone() |
| 25 | { |
| 26 | throw new RuntimeException("Unsupported Operation"); |
| 27 | } |
| 28 | |
| 29 | public void apply(Switch sw) |
| 30 | { |
| 31 | throw new RuntimeException("Switch not supported."); |
| 32 | } |
| 33 | |
| 34 | public XPCommaTerm getXPCommaTerm() |
| 35 | { |
| 36 | return _xPCommaTerm_; |
| 37 | } |
| 38 | |
| 39 | public void setXPCommaTerm(XPCommaTerm node) |
| 40 | { |
| 41 | if(_xPCommaTerm_ != null) |
| 42 | { |
| 43 | _xPCommaTerm_.parent(null); |
| 44 | } |
| 45 | |
| 46 | if(node != null) |
| 47 | { |
| 48 | if(node.parent() != null) |
| 49 | { |
| 50 | node.parent().removeChild(node); |
| 51 | } |
| 52 | |
| 53 | node.parent(this); |
| 54 | } |
| 55 | |
| 56 | _xPCommaTerm_ = node; |
| 57 | } |
| 58 | |
| 59 | public PCommaTerm getPCommaTerm() |
| 60 | { |
| 61 | return _pCommaTerm_; |
| 62 | } |
| 63 | |
| 64 | public void setPCommaTerm(PCommaTerm node) |
| 65 | { |
| 66 | if(_pCommaTerm_ != null) |
| 67 | { |
| 68 | _pCommaTerm_.parent(null); |
| 69 | } |
| 70 | |
| 71 | if(node != null) |
| 72 | { |
| 73 | if(node.parent() != null) |
| 74 | { |
| 75 | node.parent().removeChild(node); |
| 76 | } |
| 77 | |
| 78 | node.parent(this); |
| 79 | } |
| 80 | |
| 81 | _pCommaTerm_ = node; |
| 82 | } |
| 83 | |
| 84 | void removeChild(Node child) |
| 85 | { |
| 86 | if(_xPCommaTerm_ == child) |
| 87 | { |
| 88 | _xPCommaTerm_ = null; |
| 89 | } |
| 90 | |
| 91 | if(_pCommaTerm_ == child) |
| 92 | { |
| 93 | _pCommaTerm_ = null; |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | void replaceChild(Node oldChild, Node newChild) |
| 98 | { |
| 99 | } |
| 100 | |
| 101 | public String toString() |
| 102 | { |
| 103 | return "" + |
| 104 | toString(_xPCommaTerm_) + |
| 105 | toString(_pCommaTerm_); |
| 106 | } |
| 107 | } |