Examples of ImplementedInterfaceInfo


Examples of fr.xlim.ssd.capmanipulator.library.ImplementedInterfaceInfo

     *
     * @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;
    }
View Full Code Here

Examples of fr.xlim.ssd.capmanipulator.library.ImplementedInterfaceInfo

        // the number of entries entries in the interfaces array
        // is in the second nibble of the bitField
        byte interfaceCount = (byte) (bitfield & 0x0F);

        for (int i = 0; i < interfaceCount; i++) {
            ImplementedInterfaceInfo impInt = new ImplementedInterfaceInfoRead().load(in);
            classInfo.getInterfaces().add(impInt);
        }

        // remoteInterfaces reading
        // only if the ACC_REMOTE flag has the value 0
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.