KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > cmpdb > testCreateCMPBeansFromDB_MicroMarketsLocalBusiness


1
2 package cmpdb;
3
4
5 /**
6  * This is the business interface for MicroMarkets enterprise bean.
7  */

8 public interface MicroMarketsLocalBusiness {
9     String JavaDoc getZipCode();
10
11     Double JavaDoc getRadius();
12
13     void setRadius(Double JavaDoc radius);
14
15     Double JavaDoc getAreaLength();
16
17     void setAreaLength(Double JavaDoc areaLength);
18
19     Double JavaDoc getAreaWidth();
20
21     void setAreaWidth(Double JavaDoc areaWidth);
22     
23 }
24
Popular Tags