KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > testGenerateBeans_MicroMarketsTblLocalHome


1
2 package test;
3
4 import javax.ejb.CreateException JavaDoc;
5 import javax.ejb.EJBLocalHome JavaDoc;
6 import javax.ejb.FinderException JavaDoc;
7
8
9 /**
10  * This is the local-home interface for MicroMarketsTbl enterprise bean.
11  */

12 public interface MicroMarketsTblLocalHome extends EJBLocalHome JavaDoc {
13     
14     MicroMarketsTblLocal findByPrimaryKey(String JavaDoc key) throws FinderException JavaDoc;
15
16     public MicroMarketsTblLocal create(String JavaDoc zipCode, Double JavaDoc radius, Double JavaDoc areaLength, Double JavaDoc areaWidth) throws CreateException JavaDoc;
17     
18     
19 }
20
Free Books   Free Magazines  
Popular Tags