Package alt.jiapi.instrumentor

Examples of alt.jiapi.instrumentor.CatchInstrumentor


        super(resolution);

        try {
            InstrumentorChain chain = new InstrumentorChain();
            ChainInstrumentor dispatcher = new MethodDispatcherInstrumentor();
            CatchInstrumentor selectCatchBlocks = new CatchInstrumentor();
            ChainInstrumentor selectHead = new HeadInstrumentor();
            ChainInstrumentor callMethod =
                new MethodCallInstrumentor(new CatchHook(this));

            selectCatchBlocks.setResolutions(getResolutions());

            chain.add(dispatcher);
            chain.add(selectCatchBlocks);
            chain.add(selectHead);
            chain.add(callMethod);
View Full Code Here

TOP

Related Classes of alt.jiapi.instrumentor.CatchInstrumentor

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.