KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > ejb > cmr > CityLocal


1 /*
2  * Generated by XDoclet - Do not edit!
3  */

4 package test.ejb.cmr;
5
6 /**
7  * Local interface for City.
8  * @xdoclet-generated at 16-04-05
9  * @copyright The XDoclet Team
10  * @author XDoclet
11  * @version 1.2.3
12  */

13 public interface CityLocal
14    extends javax.ejb.EJBLocalObject JavaDoc
15 {
16    /**
17     * Returns the cityId
18     * @return the cityId
19     */

20    public java.lang.Integer JavaDoc getCityId( ) ;
21
22    /**
23     * Returns the name
24     * @return the name
25     */

26    public java.lang.String JavaDoc getName( ) ;
27
28    /**
29     * Sets the name
30     * @param java.lang.String the new name value
31     */

32    public void setName( java.lang.String JavaDoc name ) ;
33
34    /**
35     * Returns a collection of related test.ejb.cmr.LanguageLocal
36     * @return a collection of related test.ejb.cmr.LanguageLocal
37     */

38    public java.util.Collection JavaDoc getLanguages( ) ;
39
40    /**
41     * Sets a collection of related test.ejb.cmr.LanguageLocal
42     * @param a collection of related test.ejb.cmr.LanguageLocal
43     * @param languages the new CMR value */

44    public void setLanguages( java.util.Collection JavaDoc languages ) ;
45
46 }
47
Popular Tags