soot.jimple.parser.node.ASynchronizedModifier 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
/* 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 ASynchronizedModifier extends PModifier
{
private TSynchronized _synchronized_;
public ASynchronizedModifier()
{
// Constructor
}
public ASynchronizedModifier(
@SuppressWarnings("hiding") TSynchronized _synchronized_)
{
// Constructor
setSynchronized(_synchronized_);
}
@Override
public Object clone()
{
return new ASynchronizedModifier(
cloneNode(this._synchronized_));
}
@Override
public void apply(Switch sw)
{
((Analysis) sw).caseASynchronizedModifier(this);
}
public TSynchronized getSynchronized()
{
return this._synchronized_;
}
public void setSynchronized(TSynchronized node)
{
if(this._synchronized_ != null)
{
this._synchronized_.parent(null);
}
if(node != null)
{
if(node.parent() != null)
{
node.parent().removeChild(node);
}
node.parent(this);
}
this._synchronized_ = node;
}
@Override
public String toString()
{
return ""
+ toString(this._synchronized_);
}
@Override
void removeChild(@SuppressWarnings("unused") Node child)
{
// Remove child
if(this._synchronized_ == child)
{
this._synchronized_ = null;
return;
}
throw new RuntimeException("Not a child.");
}
@Override
void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
{
// Replace child
if(this._synchronized_ == oldChild)
{
setSynchronized((TSynchronized) newChild);
return;
}
throw new RuntimeException("Not a child.");
}
}