What is Annotation?
1.
In programming sense... it is kinda small attribute that you tag alongwith some definition... (may be for a method or some attribute). This directly doesn't affect how the programme works, but acts as set of specifications in case someone(some framework or something... is trying to act according to it...
@annotation
...then you define a method....
(sorry this is a little java specific)
See