JavaPatternMatching/src/de/dhbwstuttgart/syntaxtree/statement/CastExpr.java

63 lines
1.2 KiB
Java
Executable File

// ino.module.CastExpr.8627.package
package de.dhbwstuttgart.syntaxtree.statement;
// ino.end
// ino.module.CastExpr.8627.import
import java.util.Hashtable;
import java.util.Iterator;
import de.dhbwstuttgart.syntaxtree.type.RefType;
import org.apache.bcel.generic.ClassGen;
import org.apache.bcel.generic.InstructionList;
// ino.class.CastExpr.25126.declaration
public class CastExpr extends Expr
// ino.end
// ino.class.CastExpr.25126.body
{
// ino.method.CastExpr.25130.definition
public CastExpr(RefType castType, Expr expr, int offset)
// ino.end
// ino.method.CastExpr.25130.body
{
super(null, 0);
}
// ino.end
// ino.attribute.type.25133.decla
// ino.end
// ino.attribute.expr.25136.declaration
public Expr expr;
// ino.end
// ino.method.get_Name.25145.definition
public String get_Name()
// ino.end
// ino.method.get_Name.25145.body
{
return null;
}
// ino.end
// ino.method.set_Expr.25151.definition
public void set_Expr(Expr ex)
// ino.end
// ino.method.set_Expr.25151.body
{
this.expr = ex;
}
// ino.end
}
// ino.end