Class writing, call graph, eclipse project
This commit is contained in:
@@ -3,6 +3,7 @@ package info.sigterm.deob.pool;
|
||||
import info.sigterm.deob.ConstantPool;
|
||||
|
||||
import java.io.DataInputStream;
|
||||
import java.io.DataOutputStream;
|
||||
import java.io.IOException;
|
||||
|
||||
public class InterfaceMethod extends PoolEntry
|
||||
@@ -29,4 +30,11 @@ public class InterfaceMethod extends PoolEntry
|
||||
{
|
||||
return (NameAndType) this.getPool().getEntry(nameAndTypeIndex);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void write(DataOutputStream out) throws IOException
|
||||
{
|
||||
out.writeShort(classIndex);
|
||||
out.writeShort(nameAndTypeIndex);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user