aboutsummaryrefslogtreecommitdiff
path: root/src/xdocs
diff options
context:
space:
mode:
authorStéphane Galland <galland@arakhne.org>2015-10-08 10:04:12 +0200
committerRoman Ivanov <ivanov-jr@mail.ru>2015-10-08 06:47:06 -0700
commit74e9b64d933a28eb3eb914245ed6f9c9961e7daf (patch)
tree31712c65a71b6171284954dfda9c9cbe9c7d6cf6 /src/xdocs
parentb4bbea4c05f785ff41cad65475886dd960172aa4 (diff)
downloadcheckstyle-74e9b64d933a28eb3eb914245ed6f9c9961e7daf.tar.gz
Issue #2275: Support for @SuppressWarnings("all").
Diffstat (limited to 'src/xdocs')
-rw-r--r--src/xdocs/config_annotation.xml9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/xdocs/config_annotation.xml b/src/xdocs/config_annotation.xml
index ae3b1b75d..b56e9d738 100644
--- a/src/xdocs/config_annotation.xml
+++ b/src/xdocs/config_annotation.xml
@@ -440,6 +440,15 @@
</source>
</p>
+ <p>It is possible to suppress all the checkstyle warnings with the argument <code>"all"</code>:
+ <source>
+ @SuppressWarnings("all")
+ public void someFunctionWithInvalidStyle() {
+ //...
+ }
+ </source>
+ </p>
+
</subsection>
<subsection name="Example of Usage">