@Retention(RetentionPolicy.RUNTIME)
@interface Todo {
String value();
}
import java.lang.annotation.*;
@Todo("Hello world")
public class Example {
public static void main(String[] args) {
Todo task = Example.class.getAnnotation(Todo.class);
System.out.println("Found annotation: " + task.value());
}
}
No comments:
Post a Comment