1 /*xml 2 <module name="Checker"> 3 <module name="TreeWalker"> 4 <module name="SuppressWithNearbyCommentFilter"/> 5 <module name="NoWhitespaceAfter"/> 6 </module> 7 </module> 8 */ 9 package com.puppycrawl.tools.checkstyle.filters.suppresswithnearbycommentfilter; 10 // xdoc section -- start 11 public class Example1 { 12 private int [] array; // SUPPRESS CHECKSTYLE NoWhitespaceAfter 13 } 14 // xdoc section -- end