KickJava   Java API By Example, From Geeks To Geeks.

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


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: AttributesTestInterface.java,v 1.1 2003/05/20 07:45:09 lecando Exp $ -->
13  *
14  * @author $Author: lecando $
15  * @version $Revision: 1.1 $
16  *
17  * @interface.attribute classValue
18  */

19 public interface AttributesTestInterface {
20     ///CLOVER:OFF
21
/**
22      * @interface.attribute methodValue
23      */

24     void method();
25
26     /**
27      * @interface.attribute argMethodValue
28      */

29     void method(String JavaDoc arg, String JavaDoc arg2);
30
31     /**
32      * @interface.attribute arrayArgMethodValue
33      */

34     void method(String JavaDoc[] args);
35     ///CLOVER:ON
36
}
37
Popular Tags