java.lang.annotation
@Retention(RetentionPolicy.RUNTIME)
public @interface MyAnnotation {
String value();
}
@MyAnnotation("Example Value")
public class MyClass {
// ...
}public void myMethod(@MyAnnotation String parameter) {
// ...
}@MyAnnotation
public String myMethod() {
// ...
return "Example Value";
}