soot.jimple.parser.node.ASimpleNewExpr 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 ASimpleNewExpr extends PNewExpr
{
private TNew _new_;
private PBaseType _baseType_;
public ASimpleNewExpr()
{
// Constructor
}
public ASimpleNewExpr(
@SuppressWarnings("hiding") TNew _new_,
@SuppressWarnings("hiding") PBaseType _baseType_)
{
// Constructor
setNew(_new_);
setBaseType(_baseType_);
}
@Override
public Object clone()
{
return new ASimpleNewExpr(
cloneNode(this._new_),
cloneNode(this._baseType_));
}
@Override
public void apply(Switch sw)
{
((Analysis) sw).caseASimpleNewExpr(this);
}
public TNew getNew()
{
return this._new_;
}
public void setNew(TNew node)
{
if(this._new_ != null)
{
this._new_.parent(null);
}
if(node != null)
{
if(node.parent() != null)
{
node.parent().removeChild(node);
}
node.parent(this);
}
this._new_ = node;
}
public PBaseType getBaseType()
{
return this._baseType_;
}
public void setBaseType(PBaseType node)
{
if(this._baseType_ != null)
{
this._baseType_.parent(null);
}
if(node != null)
{
if(node.parent() != null)
{
node.parent().removeChild(node);
}
node.parent(this);
}
this._baseType_ = node;
}
@Override
public String toString()
{
return ""
+ toString(this._new_)
+ toString(this._baseType_);
}
@Override
void removeChild(@SuppressWarnings("unused") Node child)
{
// Remove child
if(this._new_ == child)
{
this._new_ = null;
return;
}
if(this._baseType_ == child)
{
this._baseType_ = null;
return;
}
throw new RuntimeException("Not a child.");
}
@Override
void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
{
// Replace child
if(this._new_ == oldChild)
{
setNew((TNew) newChild);
return;
}
if(this._baseType_ == oldChild)
{
setBaseType((PBaseType) newChild);
return;
}
throw new RuntimeException("Not a child.");
}
}