KickJava   Java API By Example, From Geeks To Geeks.

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


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

6 package com.puppycrawl.tools.checkstyle;
7
8 /**
9  * Testing tag writing
10  * @author Daniel Grenner
11  * @incomplete This class needs more code...
12  * @doubletag first text
13  * @doubletag second text
14  */

15 class InputWriteTag
16 {
17     public void method()
18     {
19     }
20
21     /**
22      * @todo Add a comment
23      */

24     public void anotherMethod()
25     {
26     }
27 }
28
Popular Tags