KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > my > db > ebeans > MicroMarketsTblLocalBusiness


1
2 package my.db.ebeans;
3
4
5 /**
6  * This is the business interface for MicroMarketsTbl enterprise bean.
7  */

8 public interface MicroMarketsTblLocalBusiness {
9     java.lang.String JavaDoc getZipCode();
10
11     java.lang.Double JavaDoc getRadius();
12
13     void setRadius(java.lang.Double JavaDoc radius);
14
15     java.lang.Double JavaDoc getAreaLength();
16
17     void setAreaLength(java.lang.Double JavaDoc areaLength);
18
19     java.lang.Double JavaDoc getAreaWidth();
20
21     void setAreaWidth(java.lang.Double JavaDoc areaWidth);
22
23     java.util.Collection JavaDoc getCustomerTbl();
24
25     void setCustomerTbl(java.util.Collection JavaDoc customerTbl);
26     
27 }
28
Popular Tags