29 lines
494 B
Java
29 lines
494 B
Java
package info.sigterm.deob.execution;
|
|
|
|
import info.sigterm.deob.ClassGroup;
|
|
import info.sigterm.deob.Method;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
public class Execution
|
|
{
|
|
private ClassGroup group;
|
|
private ArrayList<Path> paths = new ArrayList<Path>(); // paths of execution
|
|
|
|
public Execution(ClassGroup group)
|
|
{
|
|
this.group = group;
|
|
}
|
|
|
|
public void run(Method method, Object... args)
|
|
{
|
|
Path p = new Path(this);
|
|
p.init(method, args);
|
|
}
|
|
|
|
public void addPath(Path p)
|
|
{
|
|
paths.add(p);
|
|
}
|
|
}
|