Create Basic Annotation



 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
public @interface SampleAnnotation {
 
    String name();
    String desc();
}
 
class MyAnnotation{
     
    @MySampleAnn(name = "sparrow", desc = "It is a bird")
    public void myTestMethod(){
        //method implementation
    }
}