Files
runelite/src/main/java/info/sigterm/deob/execution/Execution.java
2014-12-05 16:26:07 -05:00

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);
}
}