Wednesday 26 February 2014

To Create Basic custom annotation in java

public @interface MySampleAnn {

    String name();
    String desc();
}

class MyAnnTest{
   
    @MySampleAnn(name = "test1", desc = "testing annotations")
    public void myTestMethod(){
        //method implementation
    }
}

No comments:

Post a Comment