Package fr.xlim.ssd.capmanipulator.library

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


                if (elem instanceof ConstantStaticMethodRef) {

                    ConstantStaticMethodRef tmp = (ConstantStaticMethodRef) elem;

                    if (tmp.getStaticMethodRef() instanceof InternalStaticMethodRef) {
                        InternalStaticMethodRef tmp2 = (InternalStaticMethodRef) tmp.getStaticMethodRef();

                        constantPoolComponent.getOffsetMethodList().add(tmp2.getOffset());
                    }

                }
            }
View Full Code Here


        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();
            ((InternalStaticMethodRef) staticMethodRef).setPadding(buf);
            ((InternalStaticMethodRef) staticMethodRef).setOffset(in.readShort());

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

TOP

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

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.