org.jace.parser.constant.InterfaceMethodRefConstantReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jace-core-java Show documentation
Show all versions of jace-core-java Show documentation
Jace core module, Java source-code
package org.jace.parser.constant;
import org.jace.parser.ConstantPool;
import java.io.DataInputStream;
import java.io.IOException;
import java.io.InputStream;
public class InterfaceMethodRefConstantReader implements ConstantReader
{
private final static short TAG = 11;
@Override
public int getTag()
{
return TAG;
}
@Override
public Constant readConstant(InputStream is, ConstantPool pool) throws ClassFormatError
{
int classIndex;
int nameAndTypeIndex;
try
{
classIndex = new DataInputStream(is).readUnsignedShort();
nameAndTypeIndex = new DataInputStream(is).readUnsignedShort();
}
catch (IOException e)
{
ClassFormatError exception = new ClassFormatError("Unable to read the MethodRef Constant");
exception.initCause(e);
throw exception;
}
return new InterfaceMethodRefConstant(classIndex, nameAndTypeIndex);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy