Package fr.xlim.ssd.capmanipulator.library

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


        // remoteMethods reading
        remoteInterfaceInfo.getRemoteMethods().clear();

        for (int i = 0; i < remoteInterfaceInfo.getRemoteMethodsCount(); i++) {

            RemoteMethodInfo rmi = new RemoteMethodInfoRead().load(in);
            remoteInterfaceInfo.getRemoteMethods().add(rmi);
        }

        // hashModifierLength reading
        remoteInterfaceInfo.setHashModifierLength(in.readByte());
View Full Code Here


     *
     * @throws java.io.IOException
     */
    public RemoteMethodInfo load(CapInputStream in) throws UnableToReadCapFileException {

        RemoteMethodInfo remoteMethodInfo = new RemoteMethodInfo();

        remoteMethodInfo.setRemoteMethodHash(in.readShort());

        remoteMethodInfo.setSignatureOffset(in.readShort());

        remoteMethodInfo.setVirtualMethodToken(in.readShort());

        return remoteMethodInfo;
    }
View Full Code Here

TOP

Related Classes of fr.xlim.ssd.capmanipulator.library.RemoteMethodInfo

Copyright © 2018 www.massapicom. 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.