KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > puppycrawl > tools > checkstyle > InputJavadoc


1 ////////////////////////////////////////////////////////////////////////////////
2
// Test case file for checkstyle.
3
// Created: 2001
4
////////////////////////////////////////////////////////////////////////////////
5

6 package com.puppycrawl.tools.checkstyle;
7
8 /**
9  * Testing author and version tag patterns
10  **** @author Oliver Burn
11  * @version 1.0
12  */

13 class InputJavadoc
14 {
15 }
16
17 /**
18  * Testing author and version tag patterns (there are not tags :)
19  * SomeText @author Oliver Burn
20  * *@version 1.0
21  */

22 class InputJavadoc1
23 {
24 }
25
26 /**
27  * Testing author and version tag patterns.
28  * tags are multi line ones
29  * @author Oliver Burn
30  * @version 1.0 */

31 class InputJavadoc2
32 {
33 }
34
35 //Testing tag on first comment line
36
/**
37 * @author ABC
38 * @version 1.1
39 */

40 class InputJavadocType
41 {
42 }
43
44 /**
45  * Testing author and version tag patterns
46  **** @author Oliver Burn
47  * @version 1.0
48  */

49 enum InputJavadocEnum
50 {
51 }
52
53 /**
54  * Testing author and version tag patterns (there are not tags :)
55  * SomeText @author Oliver Burn
56  * *@version 1.0
57  */

58 enum InputJavadocEnum1
59 {
60 }
61
62 /**
63  * Testing author and version tag patterns.
64  * tags are multi line ones
65  * @author Oliver Burn
66  * @version 1.0 */

67 enum InputJavadocEnum2
68 {
69 }
70
71 //Testing tag on first comment line
72
/**
73 * @author ABC
74 * @version 1.1
75 */

76 @interface InputJavadocInterfaceType
77 {
78 }
79
80 /**
81  * Testing author and version tag patterns
82  **** @author Oliver Burn
83  * @version 1.0
84  */

85 @interface InputJavadocInterface
86 {
87 }
88
89 /**
90  * Testing author and version tag patterns (there are not tags :)
91  * SomeText @author Oliver Burn
92  * *@version 1.0
93  */

94 @interface InputJavadocInterface1
95 {
96 }
97
98 /**
99  * Testing author and version tag patterns.
100  * tags are multi line ones
101  * @author Oliver Burn
102  * @version 1.0 */

103 @interface InputJavadocInterface2
104 {
105 }
106
107 //Testing tag on first comment line
108
/**
109 * @author ABC
110 * @version 1.1
111 */

112 @interface InputJavadocInterfaceType1
113 {
114 }
115
Popular Tags