Package org.jboss.byteman.tests.auxiliary

Examples of org.jboss.byteman.tests.auxiliary.TestAnonAuxiliary


    public static TestAnonAuxiliary anonInstance = null;

    public void test()
    {
        final int foo = getFoo();
        TestAnonAuxiliary auxiliary = new  TestAnonAuxiliary() {
            int bar = foo;
            public void test(TestAnonClassCompile test) {
                if (bar == 1) {
                    test.log("inside TestAnonClassCompile$1");
                }
                super.test(test);
    anonInstance = this;
            }
        };

        auxiliary.test(this);

        checkOutput();
    }
View Full Code Here

TOP

Related Classes of org.jboss.byteman.tests.auxiliary.TestAnonAuxiliary

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.