like this -> before: ``` @MyAnnotation(param1="A") public Object m1(){ //....... } ``` after: ``` @MyAnnotation(param1="B") public Object m1(){ //....... } ``` Is it possible by using bytebuddy lib ?