Package fr.xlim.ssd.capmanipulator.library

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


                        ConstantClassRef cClass = new ConstantClassRefRead().load(in);
                        constantPoolComponent.getConstantPool().add(cClass);
                        break;

                    case ConstantPoolComponent.TAG_INSTANCE_FIELD_REF:
                        ConstantInstanceFieldRef cInstF = new ConstantInstanceFieldRefRead().load(in);
                        constantPoolComponent.getConstantPool().add(cInstF);
                        break;

                    case ConstantPoolComponent.TAG_VIRTUAL_METHOD_REF:
                        ConstantVirtualMethodRef cVirtMet = new ConstantVirtualMethodRefRead().load(in);
View Full Code Here


     *
     * @throws java.io.IOException
     */
    public ConstantInstanceFieldRef load(CapInputStream in) throws UnableToReadCapFileException {

        ConstantInstanceFieldRef constantInstanceFieldRef = new ConstantInstanceFieldRef();

        constantInstanceFieldRef.setAssociatedClass(new ClassRefRead().load(in));
        constantInstanceFieldRef.setToken(in.readByte());

        return constantInstanceFieldRef;
    }
View Full Code Here

TOP

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

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.