package bench; import javax.swing.*; import jasco.runtime.aspect.*; class VoidAspect { hook VoidHook { VoidHook(method(..args)) { execution(method); } before() { } after() { } around() { return proceed(); } } }