// Same as X but includes annotation bindingimportd.e.f.Color;publicaspectX2{before(Colorc):call(**(..))&&@annotation(c){System.err.println("Before call to "+thisJoinPoint+" color is "+c);}before(Colorc):execution(**(..))&&@annotation(c){System.err.println("Before execution of "+thisJoinPoint+" color is "+c);}}