/* 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 AIdentifierExpression extends PExpression { private TIdentifier _identifier_; public AIdentifierExpression() { // Constructor } public AIdentifierExpression( @SuppressWarnings("hiding") TIdentifier _identifier_) { // Constructor setIdentifier(_identifier_); } @Override public Object clone() { return new AIdentifierExpression( cloneNode(this._identifier_)); } @Override public void apply(Switch sw) { ((Analysis) sw).caseAIdentifierExpression(this); } public TIdentifier getIdentifier() { return this._identifier_; } public void setIdentifier(TIdentifier node) { if(this._identifier_ != null) { this._identifier_.parent(null); } if(node != null) { if(node.parent() != null) { node.parent().removeChild(node); } node.parent(this); } this._identifier_ = node; } @Override public String toString() { return "" + toString(this._identifier_); } @Override void removeChild(@SuppressWarnings("unused") Node child) { // Remove child if(this._identifier_ == child) { this._identifier_ = null; return; } throw new RuntimeException("Not a child."); } @Override void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) { // Replace child if(this._identifier_ == oldChild) { setIdentifier((TIdentifier) newChild); return; } throw new RuntimeException("Not a child."); } }