Annotation Interface SuppressArezWarnings
As a matter of style, programmers should always use this annotation on the most deeply nested element where it is effective. If you want to suppress a warning in a particular method, you should annotate that method rather than its class.
This class may be used instead of SuppressWarnings when the compiler
is passed compiled classes. The SuppressWarnings has a source retention
policy and is thus not available when the files are already compiled and is thus
not useful when attempting to suppress warnings in already compiled code.
When suppressing Arez processor diagnostics, this annotation is only supported on elements
contained within a type annotated by ArezComponent or ArezComponentLike or on the
type itself. Other usages will fail compilation.
-
Required Element Summary
Required Elements
-
Element Details
-
value
The set of warnings that are to be suppressed by the compiler in the annotated element. Duplicate names are permitted. The second and successive occurrences of a name are ignored.- Returns:
- the set of warnings to be suppressed
-