View Javadoc
1   package com.google.checkstyle.test.chapter7javadoc.rule712paragraphs;
2   
3   /**
4    * Some Javadoc.
5    *
6    * <p>Some Javadoc.
7    *
8    */
9   class InputCorrectJavadocParagraphCheck {
10  
11      /**
12       * Some Javadoc.
13       *
14       * <p>{@code function} will never be invoked with a null value.
15       *
16       * @since 8.0
17       */
18      public static final byte NUL = 0;
19  
20      /**
21       * Some Javadoc.
22       *
23       * <p>Some Javadoc.
24       *
25       * <pre>
26       * class Foo {
27       *
28       *   void foo() {}
29       * }
30       * </pre>
31       *
32       * @see <a href="http://www.gwtproject.org/doc/latest/DevGuideOrganizingProjects.html#DevGuideModules">
33       *     Documentation about GWT emulated source</a>
34       */
35      boolean emulated() {return false;}
36  
37      /**
38       * Some Javadoc.
39       *
40       * <p>Some Javadoc.
41       *
42       */
43       class InnerInputCorrectJavaDocParagraphCheck {
44  
45          /**
46           * Some Javadoc.
47           *
48           * <p>Some Javadoc.
49           *
50           * <p>Some Javadoc.
51           *
52           * @since 8.0
53           */
54          public static final byte NUL = 0;
55  
56          /**
57           * Some Javadoc.
58           *
59           * <p>Some Javadoc.
60           *
61           * @see <a href="http://www.gwtproject.org/doc/latest/DevGuideOrganizingProjects.html#DevGuideModules">
62           *     Documentation about GWT emulated source</a>
63           */
64          boolean emulated() {return false;}
65      }
66  
67      InnerInputCorrectJavaDocParagraphCheck anon = new InnerInputCorrectJavaDocParagraphCheck() {
68  
69          /**
70           * Some Javadoc.
71           *
72           * <p>Some Javadoc.
73           *
74           * <p>Some Javadoc.
75           *
76           * @since 8.0
77           */
78          public static final byte NUL = 0;
79  
80          /**
81           * Some Javadoc.
82           *
83           * <p>Some Javadoc.
84           *
85           * <p>Some Javadoc.
86           *
87           * @see <a href="http://www.gwtproject.org/doc/latest/DevGuideOrganizingProjects.html#DevGuideModules">
88           *     Documentation about GWT emulated source</a>
89           */
90          boolean emulated() {return false;}
91      };
92  }