Package fr.xlim.ssd.capmanipulator.library

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


                        ConstantSuperMethodRef cSupMet = new ConstantSuperMethodRefRead().load(in);
                        constantPoolComponent.getConstantPool().add(cSupMet);
                        break;

                    case ConstantPoolComponent.TAG_STATIC_FIELD_REF:
                        ConstantStaticFieldRef cStatF = new ConstantStaticFieldRefRead().load(in);
                        constantPoolComponent.getConstantPool().add(cStatF);
                        break;

                    case ConstantPoolComponent.TAG_STATIC_METHOD_REF:
                        ConstantStaticMethodRef cStatMet = new ConstantStaticMethodRefRead().load(in);
View Full Code Here


     * @param in Cap File Stream
     *
     * @throws java.io.IOException
     */
    public ConstantStaticFieldRef load(CapInputStream in) throws UnableToReadCapFileException {
        ConstantStaticFieldRef constantStaticFieldRef = new ConstantStaticFieldRef();
        constantStaticFieldRef.setStaticFieldRef(new StaticFieldRefRead().load(in));
        return constantStaticFieldRef;
    }
View Full Code Here

TOP

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

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.