]> source.dussan.org Git - pf4j.git/commitdiff
Add inheritance support on Extension annot 111/head
authorEmmanuel Lecomte <emmanuel.lecomte@zenika.com>
Wed, 14 Sep 2016 12:38:28 +0000 (14:38 +0200)
committerEmmanuel Lecomte <emmanuel.lecomte@zenika.com>
Wed, 14 Sep 2016 12:38:28 +0000 (14:38 +0200)
pf4j/src/main/java/ro/fortsoft/pf4j/Extension.java

index 52fe9799589f99e065183167462d886edb2fbeea..44ddcb57cc6c7ebde814b75d6c66e921ea55dbee 100644 (file)
@@ -19,6 +19,7 @@ import static java.lang.annotation.ElementType.TYPE;
 import static java.lang.annotation.RetentionPolicy.RUNTIME;
 
 import java.lang.annotation.Documented;
+import java.lang.annotation.Inherited;
 import java.lang.annotation.Retention;
 import java.lang.annotation.Target;
 
@@ -27,6 +28,7 @@ import java.lang.annotation.Target;
  */
 @Retention(RUNTIME)
 @Target(TYPE)
+@Inherited
 @Documented
 public @interface Extension {