Ben Tilford
09/22/2021, 5:07 PM@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE})
public @interface SuperAnnotation {
String value();
}
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE})
public @interface SubAnnotation {
SuperAnnotation superAnnotation();
String subValue();
}
hho
09/22/2021, 5:31 PMBen Tilford
09/22/2021, 5:35 PM