All Downloads are FREE. Search and download functionalities are using the official Maven repository.

soot.jimple.toolkits.callgraph.ReflectionModel Maven / Gradle / Ivy

There is a newer version: 2.5.0-9
Show newest version
package soot.jimple.toolkits.callgraph;

import soot.SootMethod;
import soot.jimple.Stmt;

public interface ReflectionModel {

	void methodInvoke(SootMethod container, Stmt invokeStmt);

	void classNewInstance(SootMethod source, Stmt s);

	void contructorNewInstance(SootMethod source, Stmt s);

	void classForName(SootMethod source, Stmt s);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy