If I create a custom annotation like this:
public @interface TODO
{
String msg();
String start_date();
}
then a method:
@TODO
(
msg="will be developed!",
start_date="05/01/2010"
)
public static void Calculator()
{
}
after I call it:
Calculator();
If I wanted that the compiler warn me about it how could I do that?