View Javadoc
1   package org.checkstyle.suppressionxpathfilter.javadocmethod;
2   
3   /**
4    * Config:
5    */
6   public class InputXpathJavadocMethodOne {
7   
8       /** {@inheritDoc} */
9       public void inheritableMethod() {
10          // may be inherited and overridden
11      }
12  
13      /** {@inheritDoc} */
14      private void uninheritableMethod() { //warn
15          // not possible to be inherited
16      }
17  
18  }