@Retention(value=RUNTIME)
 @Target(value=TYPE)
 @Documented
public @interface RegisteredByExtension
Example:
   \@RegisteredByExtension("oracle.jdeveloper")
   final class SomeJDeveloperAddin implements Addin { .. }
 | Modifier and Type | Required Element and Description | 
|---|---|
java.lang.String | 
value
The extension id of the extension that registers this class. 
 |