diff --git a/src/java/com/samskivert/annotation/ReplacedBy.java b/src/java/com/samskivert/annotation/ReplacedBy.java index 7a5358bb..76f82a99 100644 --- a/src/java/com/samskivert/annotation/ReplacedBy.java +++ b/src/java/com/samskivert/annotation/ReplacedBy.java @@ -22,6 +22,7 @@ package com.samskivert.annotation; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; +import java.lang.annotation.Inherited; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @@ -31,6 +32,7 @@ import java.lang.annotation.Target; * going so far as to deprecate it. */ @Documented +@Inherited @Retention(RetentionPolicy.SOURCE) @Target({ElementType.TYPE, ElementType.METHOD, ElementType.FIELD}) public @interface ReplacedBy