Package fr.xlim.ssd.capmanipulator.library

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


     *
     * @return a StaticMethodRef object (internal or external classref)
     * @throws java.io.IOException
     */
    public StaticMethodRef load(CapInputStream in) throws UnableToReadCapFileException {
        StaticMethodRef staticMethodRef;
        Byte buf = in.readByte();

        //if the most significant bit is 0 it's an internalStaticMethoddRef
        if ((buf % (Math.pow(2, 16) - 1)) == 0) {
            staticMethodRef = new InternalStaticMethodRef();
View Full Code Here

TOP

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

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.