Inherited
@Inherited is a meta-annotation in Java used to indicate that an annotation type is automatically inherited by subclasses of annotated classes. It is defined in the package: java.lang.annotation.Inherited By default, annotations are not inherited by subclasses. The @Inherited annotation allows custom annotations to be passed down from a superclass to its subclasses only if applied […]
