1 /* 2 * Generated by XDoclet - Do not edit! 3 */ 4 package test.ejb.cmr; 5 6 /** 7 * Local interface for Language. 8 * @xdoclet-generated at 16-04-05 9 * @copyright The XDoclet Team 10 * @author XDoclet 11 * @version 1.2.3 12 */ 13 public interface LanguageLocal 14 extends javax.ejb.EJBLocalObject 15 { 16 /** 17 * Returns the languageId 18 * @return the languageId 19 */ 20 public java.lang.Integer getLanguageId( ) ; 21 22 /** 23 * Returns the name 24 * @return the name 25 */ 26 public java.lang.String getName( ) ; 27 28 /** 29 * Sets the name 30 * @param java.lang.String the new name value 31 */ 32 public void setName( java.lang.String name ) ; 33 34 /** 35 * Returns the related test.ejb.cmr.LanguageCodeLocal 36 * @return the related test.ejb.cmr.LanguageCodeLocal 37 */ 38 public test.ejb.cmr.LanguageCodeLocal getLanguageCode( ) ; 39 40 /** 41 * Sets the related test.ejb.cmr.LanguageCodeLocal 42 * @param test.ejb.cmr.LanguageLocal the related languageCode 43 * @param languageCode the new CMR value */ 44 public void setLanguageCode( test.ejb.cmr.LanguageCodeLocal languageCode ) ; 45 46 /** 47 * Returns a collection of related test.ejb.cmr.CityLocal 48 * @return a collection of related test.ejb.cmr.CityLocal 49 */ 50 public java.util.Collection getCities( ) ; 51 52 /** 53 * Sets a collection of related test.ejb.cmr.CityLocal 54 * @param a collection of related test.ejb.cmr.CityLocal 55 * @param cities the new CMR value */ 56 public void setCities( java.util.Collection cities ) ; 57 58 } 59