Package fr.xlim.ssd.capmanipulator.library

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


                        ConstantVirtualMethodRef cVirtMet = new ConstantVirtualMethodRefRead().load(in);
                        constantPoolComponent.getConstantPool().add(cVirtMet);
                        break;

                    case ConstantPoolComponent.TAG_SUPER_METHOD_REF:
                        ConstantSuperMethodRef cSupMet = new ConstantSuperMethodRefRead().load(in);
                        constantPoolComponent.getConstantPool().add(cSupMet);
                        break;

                    case ConstantPoolComponent.TAG_STATIC_FIELD_REF:
                        ConstantStaticFieldRef cStatF = new ConstantStaticFieldRefRead().load(in);
View Full Code Here


     * @param in Cap File Stream
     *
     * @throws java.io.IOException
     */
    public ConstantSuperMethodRef load(CapInputStream in) throws UnableToReadCapFileException {
        ConstantSuperMethodRef constantSuperMethodRef = new ConstantSuperMethodRef();
        constantSuperMethodRef.setAssociatedClass(new ClassRefRead().load(in));
        constantSuperMethodRef.setToken(in.readByte());
        return constantSuperMethodRef;
    }
View Full Code Here

TOP

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

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.