Package fr.xlim.ssd.capmanipulator.library

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


                        ConstantInstanceFieldRef cInstF = new ConstantInstanceFieldRefRead().load(in);
                        constantPoolComponent.getConstantPool().add(cInstF);
                        break;

                    case ConstantPoolComponent.TAG_VIRTUAL_METHOD_REF:
                        ConstantVirtualMethodRef cVirtMet = new ConstantVirtualMethodRefRead().load(in);
                        constantPoolComponent.getConstantPool().add(cVirtMet);
                        break;

                    case ConstantPoolComponent.TAG_SUPER_METHOD_REF:
                        ConstantSuperMethodRef cSupMet = new ConstantSuperMethodRefRead().load(in);
View Full Code Here


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

TOP

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

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.