Close

Java Annotations - @Inherited Examples

[Last Updated: Nov 8, 2025]

Java Annotations Java 

import java.lang.annotation.*;

@Inherited
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface MyInheritedAnnotation {
}
Original Post




See Also