package org.test; public aspect Goodbye { before() : within(Test) && execution(void speak()) { System.out.print("Goodbye Cruel "); } }