Some thinking about execution

This commit is contained in:
Adam
2014-12-01 14:37:19 -05:00
parent 0d50085e03
commit 228f650b6c
14 changed files with 131 additions and 18 deletions

View File

@@ -0,0 +1,19 @@
package info.sigterm.deob.execution;
import info.sigterm.deob.ClassGroup;
import info.sigterm.deob.pool.Method;
public class Execution
{
private ClassGroup group;
private java.util.Stack<Frame> frames = new java.util.Stack<Frame>();
public Execution(ClassGroup group)
{
this.group = group;
}
public void run(Method method, Object... args)
{
}
}