new execute stuff

This commit is contained in:
Adam
2015-05-31 16:03:37 -04:00
parent 1e34e0ec66
commit 0fcbcd262c
205 changed files with 2977 additions and 1451 deletions

View File

@@ -4,6 +4,7 @@ import java.io.DataOutputStream;
import java.io.IOException;
import info.sigterm.deob.ConstantPool;
import info.sigterm.deob.execution.Type;
public abstract class PoolEntry
{
@@ -40,14 +41,14 @@ public abstract class PoolEntry
{
return type;
}
public Type getTypeClass()
{
throw new UnsupportedOperationException();
}
public int getSlots()
{
return 1;
}
public Object getObject()
{
return this;
}
}