Package fr.xlim.ssd.capmanipulator.library

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


        Byte buf = in.readByte();

        //if the most significant bit is 0 it's an internalStaticFieldRef
        if ((buf & 0x80) == 0) {
            short offset = in.readShort();
            staticFieldRef = new InternalStaticFieldRef();
            ((InternalStaticFieldRef) staticFieldRef).setPadding(buf);
            ((InternalStaticFieldRef) staticFieldRef).setOffset(offset);

        } else {
            //case of an externalStaticFieldRef
View Full Code Here

TOP

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

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.