Browse Source

Add inheritance support on Extension annot

tags/release-1.1.1
Emmanuel Lecomte 7 years ago
parent
commit
c01f9726b1
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      pf4j/src/main/java/ro/fortsoft/pf4j/Extension.java

+ 2
- 0
pf4j/src/main/java/ro/fortsoft/pf4j/Extension.java View 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 {


Loading…
Cancel
Save