soot.jimple.parser.node.AEntermonitorStatement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of soot Show documentation
Show all versions of soot Show documentation
A Java Optimization Framework
The newest version!
/* This file was generated by SableCC (http://www.sablecc.org/). */
package soot.jimple.parser.node;
import soot.jimple.parser.analysis.*;
@SuppressWarnings("nls")
public final class AEntermonitorStatement extends PStatement
{
private TEntermonitor _entermonitor_;
private PImmediate _immediate_;
private TSemicolon _semicolon_;
public AEntermonitorStatement()
{
// Constructor
}
public AEntermonitorStatement(
@SuppressWarnings("hiding") TEntermonitor _entermonitor_,
@SuppressWarnings("hiding") PImmediate _immediate_,
@SuppressWarnings("hiding") TSemicolon _semicolon_)
{
// Constructor
setEntermonitor(_entermonitor_);
setImmediate(_immediate_);
setSemicolon(_semicolon_);
}
@Override
public Object clone()
{
return new AEntermonitorStatement(
cloneNode(this._entermonitor_),
cloneNode(this._immediate_),
cloneNode(this._semicolon_));
}
@Override
public void apply(Switch sw)
{
((Analysis) sw).caseAEntermonitorStatement(this);
}
public TEntermonitor getEntermonitor()
{
return this._entermonitor_;
}
public void setEntermonitor(TEntermonitor node)
{
if(this._entermonitor_ != null)
{
this._entermonitor_.parent(null);
}
if(node != null)
{
if(node.parent() != null)
{
node.parent().removeChild(node);
}
node.parent(this);
}
this._entermonitor_ = node;
}
public PImmediate getImmediate()
{
return this._immediate_;
}
public void setImmediate(PImmediate node)
{
if(this._immediate_ != null)
{
this._immediate_.parent(null);
}
if(node != null)
{
if(node.parent() != null)
{
node.parent().removeChild(node);
}
node.parent(this);
}
this._immediate_ = node;
}
public TSemicolon getSemicolon()
{
return this._semicolon_;
}
public void setSemicolon(TSemicolon node)
{
if(this._semicolon_ != null)
{
this._semicolon_.parent(null);
}
if(node != null)
{
if(node.parent() != null)
{
node.parent().removeChild(node);
}
node.parent(this);
}
this._semicolon_ = node;
}
@Override
public String toString()
{
return ""
+ toString(this._entermonitor_)
+ toString(this._immediate_)
+ toString(this._semicolon_);
}
@Override
void removeChild(@SuppressWarnings("unused") Node child)
{
// Remove child
if(this._entermonitor_ == child)
{
this._entermonitor_ = null;
return;
}
if(this._immediate_ == child)
{
this._immediate_ = null;
return;
}
if(this._semicolon_ == child)
{
this._semicolon_ = null;
return;
}
throw new RuntimeException("Not a child.");
}
@Override
void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
{
// Replace child
if(this._entermonitor_ == oldChild)
{
setEntermonitor((TEntermonitor) newChild);
return;
}
if(this._immediate_ == oldChild)
{
setImmediate((PImmediate) newChild);
return;
}
if(this._semicolon_ == oldChild)
{
setSemicolon((TSemicolon) newChild);
return;
}
throw new RuntimeException("Not a child.");
}
}