/* This file was generated by SableCC (http://www.sablecc.org/). */ package net.sourceforge.texlipse.bibparser.node; import net.sourceforge.texlipse.bibparser.analysis.*; @SuppressWarnings("nls") public final class AStrparenStringEntry extends PStringEntry { private TIdentifier _identifier_; private TStringLiteral _stringLiteral_; public AStrparenStringEntry() { // Constructor } public AStrparenStringEntry( @SuppressWarnings("hiding") TIdentifier _identifier_, @SuppressWarnings("hiding") TStringLiteral _stringLiteral_) { // Constructor setIdentifier(_identifier_); setStringLiteral(_stringLiteral_); } @Override public Object clone() { return new AStrparenStringEntry( cloneNode(this._identifier_), cloneNode(this._stringLiteral_)); } public void apply(Switch sw) { ((Analysis) sw).caseAStrparenStringEntry(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; } public TStringLiteral getStringLiteral() { return this._stringLiteral_; } public void setStringLiteral(TStringLiteral node) { if(this._stringLiteral_ != null) { this._stringLiteral_.parent(null); } if(node != null) { if(node.parent() != null) { node.parent().removeChild(node); } node.parent(this); } this._stringLiteral_ = node; } @Override public String toString() { return "" + toString(this._identifier_) + toString(this._stringLiteral_); } @Override void removeChild(@SuppressWarnings("unused") Node child) { // Remove child if(this._identifier_ == child) { this._identifier_ = null; return; } if(this._stringLiteral_ == child) { this._stringLiteral_ = 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; } if(this._stringLiteral_ == oldChild) { setStringLiteral((TStringLiteral) newChild); return; } throw new RuntimeException("Not a child."); } }