KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > test > java > parsing > javadoc > data > TestFile


1 package org.netbeans.test.java.parsing.javadoc.data;
2
3 /** This is TestFile
4  * Second line.
5  * @since 1.4
6  */

7 public class TestFile {
8     
9     /**
10      * test field
11      * new line2 * another text
12      * <pre>hello
13           <span class="keyword">public</span>
14        </pre>
15      * last line
16      */

17     public int test;
18     
19     /**test constructor
20      * line 2 */

21     public TestFile() {
22     }
23     
24     /** test method */
25     public void test() {
26     }
27 }
28
Popular Tags