Class writing, call graph, eclipse project
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
package info.sigterm.deob.pool;
|
||||
|
||||
import java.io.DataOutputStream;
|
||||
import java.io.IOException;
|
||||
|
||||
import info.sigterm.deob.ConstantPool;
|
||||
|
||||
public abstract class PoolEntry
|
||||
@@ -12,11 +15,18 @@ public abstract class PoolEntry
|
||||
this.pool = pool;
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public abstract void write(DataOutputStream out) throws IOException;
|
||||
|
||||
public ConstantPool getPool()
|
||||
{
|
||||
return pool;
|
||||
}
|
||||
|
||||
public ConstantType getType()
|
||||
{
|
||||
return type;
|
||||
}
|
||||
|
||||
public int getSlots()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user