KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tirsen > nanning > attribute > AttributesTestClass


1 /*
2  * Nanning Aspects
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7 package com.tirsen.nanning.attribute;
8
9 /**
10  * TODO document AttributesTestClass
11  *
12  * <!-- $Id: AttributesTestClass.java,v 1.7 2003/06/10 11:28:15 lecando Exp $ -->
13  *
14  * @author $Author: lecando $
15  * @version $Revision: 1.7 $
16  *
17  * @class.attribute classValue
18  */

19 public class AttributesTestClass implements AttributesTestInterface {
20     ///CLOVER:OFF
21

22     /**
23      * @inner.attribute innerValue
24      */

25     public static class InnerClass {
26         /**
27          * @inner.field.attribute innerFieldValue
28          */

29         String JavaDoc innerField;
30     }
31
32     /**
33      * @field.attribute fieldValue
34      */

35     public String JavaDoc field;
36
37     /**
38      * @method.attribute methodValue
39      */

40     public void method() {
41     }
42
43     /**
44      * @method.attribute argMethodValue
45      */

46     public void method(String JavaDoc arg, String JavaDoc arg2) {
47     }
48
49     /**
50      * @method.attribute arrayArgMethodValue
51      */

52     public void method(String JavaDoc[] args) {
53
54     }
55     ///CLOVER:ON
56
}
57
Popular Tags