blob: 979584912ae1e892504f48bf346d8d7289ac5475 [file] [log] [blame]
/* This file was generated by SableCC (http://www.sablecc.org/). */
package com.google.clearsilver.jsilver.syntax.node;
import com.google.clearsilver.jsilver.syntax.analysis.*;
@SuppressWarnings("nls")
public final class ANameVariable extends PVariable
{
private TWord _word_;
public ANameVariable()
{
// Constructor
}
public ANameVariable(
@SuppressWarnings("hiding") TWord _word_)
{
// Constructor
setWord(_word_);
}
@Override
public Object clone()
{
return new ANameVariable(
cloneNode(this._word_));
}
public void apply(Switch sw)
{
((Analysis) sw).caseANameVariable(this);
}
public TWord getWord()
{
return this._word_;
}
public void setWord(TWord node)
{
if(this._word_ != null)
{
this._word_.parent(null);
}
if(node != null)
{
if(node.parent() != null)
{
node.parent().removeChild(node);
}
node.parent(this);
}
this._word_ = node;
}
@Override
public String toString()
{
return ""
+ toString(this._word_);
}
@Override
void removeChild(@SuppressWarnings("unused") Node child)
{
// Remove child
if(this._word_ == child)
{
this._word_ = null;
return;
}
throw new RuntimeException("Not a child.");
}
@Override
void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
{
// Replace child
if(this._word_ == oldChild)
{
setWord((TWord) newChild);
return;
}
throw new RuntimeException("Not a child.");
}
}