/* This file was generated by SableCC (http://www.sablecc.org/). */ package org.uva.student.calinwouter.qlqls.generated.node; import org.uva.student.calinwouter.qlqls.generated.analysis.*; @SuppressWarnings("nls") public final class AKeyValue extends PKeyValue { private PElement _key_; private PElement _value_; public AKeyValue() { // Constructor } public AKeyValue( @SuppressWarnings("hiding") PElement _key_, @SuppressWarnings("hiding") PElement _value_) { // Constructor setKey(_key_); setValue(_value_); } @Override public Object clone() { return new AKeyValue( cloneNode(this._key_), cloneNode(this._value_)); } @Override public void apply(Switch sw) { ((Analysis) sw).caseAKeyValue(this); } public PElement getKey() { return this._key_; } public void setKey(PElement node) { if(this._key_ != null) { this._key_.parent(null); } if(node != null) { if(node.parent() != null) { node.parent().removeChild(node); } node.parent(this); } this._key_ = node; } public PElement getValue() { return this._value_; } public void setValue(PElement node) { if(this._value_ != null) { this._value_.parent(null); } if(node != null) { if(node.parent() != null) { node.parent().removeChild(node); } node.parent(this); } this._value_ = node; } @Override public String toString() { return "" + toString(this._key_) + toString(this._value_); } @Override void removeChild(@SuppressWarnings("unused") Node child) { // Remove child if(this._key_ == child) { this._key_ = null; return; } if(this._value_ == child) { this._value_ = null; return; } throw new RuntimeException("Not a child."); } @Override void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) { // Replace child if(this._key_ == oldChild) { setKey((PElement) newChild); return; } if(this._value_ == oldChild) { setValue((PElement) newChild); return; } throw new RuntimeException("Not a child."); } }