KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > tutorial > consumer > bean > Tester


1 /*
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7 package org.jboss.tutorial.consumer.bean;
8
9
10
11
12 /**
13  * Comment
14  *
15  * @author <a HREF="mailto:bill@jboss.org">Bill Burke</a>
16  * @version $Revision: 1.2.2.3 $
17  */

18 public interface Tester
19 {
20    void testXA() throws Exception JavaDoc;
21
22    void testLocal() throws Exception JavaDoc;
23 }
24
Popular Tags