I am using a 3rd party library which has annotation named @Video
. This annotation needs to be added on all the methods. There are more than 200 methods. Is there any way to add this annotation at runtime during execution ?
Asked
Active
Viewed 34 times
0

Hearen
- 7,420
- 4
- 53
- 63

Javed Ahmed
- 223
- 1
- 3
- 17
-
There's no way to add annotations at runtime. (You could possibly use some sort of tool to edit or generate class files, as the duplicate is suggesting, I guess, but the basic answer is "no".) – Radiodef Jun 13 '18 at 17:03
-
@Radiodef thank you for your help. – Javed Ahmed Jun 14 '18 at 06:03