View Javadoc
1   /*
2   AtclauseOrder
3   violateExecutionOnNonTightHtml = (default)false
4   target = CLASS_DEF
5   tagOrder = @since, @version, @param, @return, @throws, @exception, @deprecated, @see, \
6              @serial, @serialField, @serialData, @author
7   
8   
9   */
10  
11  package com.puppycrawl.tools.checkstyle.checks.javadoc.atclauseorder;
12  /** Javadoc for import */
13  import java.io.Serializable;
14  
15  /**
16   * Some javadoc.
17   *
18   * @since Some javadoc.
19   * @version 1.0
20   * @deprecated Some javadoc.
21   * @see Some javadoc.
22   * @author max
23   */
24  class InputAtclauseOrderIncorrectCustom1 implements Serializable
25  {
26      /**
27       * The client's first name.
28       * @serial
29       */
30      private String fFirstName;
31  
32      /**
33       * The client's first name.
34       * @serial
35       */
36      private String sSecondName;
37  
38      /**
39       * The client's first name.
40       * @serialField
41       */
42      private String tThirdName;
43  
44      /**
45       * Some text.
46       * @param aString Some text.
47       * @return Some text.
48       * @serialData Some javadoc.
49       * @deprecated Some text.
50       * @throws Exception Some text.
51       */
52      String method(String aString) throws Exception {
53          return "null";
54      }
55  
56      /**
57       * Some text.
58       * @serialData Some javadoc.
59       * @return Some text.
60       * @param aString Some text.
61       * @throws Exception Some text.
62       */
63      String method1(String aString) throws Exception {
64          return "null";
65      }
66  
67      /**
68       * Some text.
69       * @throws Exception Some text.
70       * @param aString Some text.
71       */
72      void method2(String aString) throws Exception {}
73  
74      /**
75       * Some text.
76       * @deprecated Some text.
77       * @throws Exception Some text.
78       */
79      void method3() throws Exception {}
80  
81      /**
82       * Some text.
83       * @return Some text.
84       * @throws Exception Some text.
85       */
86      String method4() throws Exception {
87          return "null";
88      }
89  
90      /**
91       * Some text.
92       * @deprecated Some text.
93       * @return Some text.
94       * @param aString Some text.
95       */
96      String method5(String aString) {
97          return "null";
98      }
99  
100     /**
101      * Some text.
102      * @param aString Some text.
103      * @return Some text.
104      * @serialData Some javadoc.
105      * @param aInt Some text.
106      * @throws Exception Some text.
107      * @param aBoolean Some text.
108      * @deprecated Some text.
109      */
110     String method6(String aString, int aInt, boolean aBoolean) throws Exception {
111         return "null";
112     }
113 }