init of deob

This commit is contained in:
Adam
2014-11-30 20:35:37 -05:00
commit 41681f94a5
30 changed files with 933 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
package info.sigterm.deob.pool;
import info.sigterm.deob.ConstantPool;
public abstract class PoolEntry
{
private ConstantPool pool;
private ConstantType type;
protected PoolEntry(ConstantPool pool, ConstantType type)
{
this.pool = pool;
this.type = type;
}
public int getSlots()
{
return 1;
}
}