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