KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > AddedPackage > NewExcludedClass


1 package AddedPackage;
2
3 /**
4  * This class is added, but does not appear in the report of the
5  * differences due to the exclude tag below.
6  *
7  * Note: This tag will generate "warning - @exclude is an unknown tag"
8  * with Javadoc 1.4.1. This can be ignored.
9  *
10  * @exclude
11  */

12 public class NewExcludedClass {
13
14     /** Default constructor. */
15     public NewExcludedClass() {
16     }
17 }
18
Popular Tags