20 lines
380 B
Java
20 lines
380 B
Java
package info.sigterm.deob.pool;
|
|
|
|
import info.sigterm.deob.ConstantPool;
|
|
|
|
import java.io.DataInputStream;
|
|
import java.io.IOException;
|
|
|
|
public class Class extends PoolEntry
|
|
{
|
|
private int index;
|
|
|
|
public Class(ConstantPool pool) throws IOException
|
|
{
|
|
super(pool, ConstantType.CLASS);
|
|
|
|
DataInputStream is = pool.getClassFile().getStream();
|
|
index = is.readUnsignedShort();
|
|
}
|
|
}
|