What is the difference between public and abstract modifier for an elements of annotation in Java.
For example we coul
Both of them are redundant. As described in the JLS the methods of an interface are abstract and public by default.