View Javadoc
1   /*
2   JavadocContentLocation
3   location = \tFIRST_LINE
4   
5   
6   */
7   
8   package com.puppycrawl.tools.checkstyle.checks.javadoc.javadoccontentlocation;
9   
10  public interface InputJavadocContentLocationTrimOptionProperty {
11  
12      /**
13       * Text. // violation above 'Javadoc content should start from the same line as /\*\*.'
14       */
15      void violation();
16  
17      /** Text. // OK
18       */
19      void ok();
20      // violation below 'Javadoc content should start from the same line as /\*\*.'
21      /**
22       *
23       * Third line.
24       */
25      void thirdLineViolation();
26  
27  }