KickJava   Java API By Example, From Geeks To Geeks.

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


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

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

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

20    public java.lang.Integer JavaDoc getCountryId( ) ;
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.CityLocal
36     * @return a collection of related test.ejb.cmr.CityLocal
37     */

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

44    public void setCities( java.util.Collection JavaDoc cities ) ;
45
46    /**
47     * Returns a collection of related test.ejb.cmr.CountryLocal
48     * @return a collection of related test.ejb.cmr.CountryLocal
49     * @jboss Unidirectional 1->N relationship unsupported by XDoclet */

50    public java.util.Collection JavaDoc getCountries( ) ;
51
52    /**
53     * Sets a collection of related test.ejb.cmr.CountryLocal
54     * @param a collection of related test.ejb.cmr.CountryLocal
55     * @param countries the new CMR value */

56    public void setCountries( java.util.Collection JavaDoc countries ) ;
57
58    /**
59     * Returns the related test.ejb.cmr.CountryLocal
60     * @return the related test.ejb.cmr.CountryLocal
61     */

62    public test.ejb.cmr.CountryLocal getCountry( ) ;
63
64    /**
65     * Sets the related test.ejb.cmr.CountryLocal
66     * @param test.ejb.cmr.CountryLocal the related country
67     * @param country the new CMR value */

68    public void setCountry( test.ejb.cmr.CountryLocal country ) ;
69
70 }
71
Popular Tags