package test.instantiation; import javax.swing.*; import jasco.runtime.JascoMethod; import jasco.runtime.aspect.*; class AspectBeanInstantiationTest { public String testing = ""; public AspectBeanInstantiationTest() {} public AspectBeanInstantiationTest(String testing) {this.testing=testing;} public boolean test(test.instantiation.AspectBeanInstantiationTest boe) {return true;} public boolean test2(AspectBeanInstantiationTest boe) {return true;} hook test { test(method(..args)) { execution(method); } before() { System.out.println(global.testing+thisJoinPoint.getName()+" IN "+thisJoinPoint.getClassName()); } } }