Annotation Interface SuppressRestrictedWarnings
@Retention(CLASS)
@Documented
@Target({METHOD,CONSTRUCTOR,TYPE})
public @interface SuppressRestrictedWarnings
Indicates that certain classes annotated with Restricted
annotations should be skipped during the
access-modifier-check.
Warning! Classes are markes as Restricted
for a reason! Do not use these suppressions lightly.
Use at your own risk
- Author:
- Steve Arch
-
Required Element Summary
Modifier and TypeRequired ElementDescriptionClass<?>[]
The classes that are marked asRestricted
that should be skipped from the scan.
-
Element Details
-
value
Class<?>[] valueThe classes that are marked asRestricted
that should be skipped from the scan.
-