Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ed69c0b04e41b0708ff366031fae0b6a4e60c8c7 (plain) (blame)
1
2
3
4
5
6
7
package java.lang.annotation;

@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.ANNOTATION_TYPE)
public @interface Inherited {
}

Back to the top