KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > test > j2ee > debug > TestDebugRemoteHome


1
2 package org.netbeans.test.j2ee.debug;
3
4
5 /**
6  * This is the home interface for TestDebug enterprise bean.
7  */

8 public interface TestDebugRemoteHome extends javax.ejb.EJBHome JavaDoc {
9     
10     
11     
12     /**
13      *
14      */

15     org.netbeans.test.j2ee.debug.TestDebugRemote create() throws javax.ejb.CreateException JavaDoc, java.rmi.RemoteException JavaDoc;
16     
17     
18 }
19
Popular Tags