mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 20:50:54 +07:00
9 lines
258 B
Java
9 lines
258 B
Java
import java.lang.annotation.Repeatable;
|
|
|
|
@Repeatable(Alerts.class)
|
|
@interface Alert {
|
|
String <warning descr="Method 'role()' is never used">role</warning>() default "/dev/null";
|
|
}
|
|
@interface Alerts {
|
|
Alert[] value(); // gives unused declaration warning
|
|
} |