/* This file was generated by SableCC (http://www.sablecc.org/). */ package org.sablecc.sablecc.node; import org.sablecc.sablecc.analysis.*; import java.util.LinkedList; import java.util.List; import java.util.ListIterator; @SuppressWarnings("nls") public final class AHelpers extends PHelpers { private final LinkedList<PHelperDef> _helperDefs_ = new LinkedList<PHelperDef>(); public AHelpers() { // Constructor } public AHelpers( @SuppressWarnings("hiding") List<?> _helperDefs_) { // Constructor setHelperDefs(_helperDefs_); } @Override public Object clone() { return new AHelpers( cloneList(this._helperDefs_)); } @Override public void apply(Switch sw) { ((Analysis) sw).caseAHelpers(this); } public LinkedList<PHelperDef> getHelperDefs() { return this._helperDefs_; } public void setHelperDefs(List<?> list) { for (PHelperDef e : this._helperDefs_) { e.parent(null); } this._helperDefs_.clear(); for (Object obj_e : list) { PHelperDef e = (PHelperDef) obj_e; if (e.parent() != null) { e.parent().removeChild(e); } e.parent(this); this._helperDefs_.add(e); } } @Override public String toString() { return "" + toString(this._helperDefs_); } @Override void removeChild(@SuppressWarnings("unused") Node child) { // Remove child if (this._helperDefs_.remove(child)) { return; } throw new RuntimeException("Not a child."); } @Override void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) { // Replace child for (ListIterator<PHelperDef> i = this._helperDefs_.listIterator(); i.hasNext(); ) { if (i.next() == oldChild) { if (newChild != null) { i.set((PHelperDef) newChild); newChild.parent(this); oldChild.parent(null); return; } i.remove(); oldChild.parent(null); return; } } throw new RuntimeException("Not a child."); } }