public @interface MySampleAnn {
String name();
String desc();
}
class MyAnnTest{
@MySampleAnn(name = "test1", desc = "testing annotations")
public void myTestMethod(){
//method implementation
}
}
String name();
String desc();
}
class MyAnnTest{
@MySampleAnn(name = "test1", desc = "testing annotations")
public void myTestMethod(){
//method implementation
}
}
No comments:
Post a Comment