*
* @throws java.io.IOException
*/
public ImplementedInterfaceInfo load(CapInputStream in) throws UnableToReadCapFileException {
ImplementedInterfaceInfo implementedInterface = new ImplementedInterfaceInfo();
implementedInterface.setTheInterface(new ClassRefRead().load(in));
implementedInterface.setCount(in.readByte());
for (int i = 0; i < implementedInterface.getCount(); i++) {
implementedInterface.getIndex().add(in.readByte());
}
return implementedInterface;
}