Close

Java Annotations - @Inherited Examples

Java Annotations Java 

import java.lang.annotation.*;

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




See Also