View Javadoc
1   // =================== DO NOT EDIT THIS FILE ====================
2   // Generated by Modello 2.3.0,
3   // any modifications will be overwritten.
4   // ==============================================================
5   
6   package org.codehaus.modello.test.features;
7   
8     //---------------------------------/
9    //- Imported classes and packages -/
10  //---------------------------------/
11  
12  import org.codehaus.modello.test.features.other.PackageNameFeature;
13  import org.codehaus.modello.test.features.other.SubInterfaceInPackage;
14  
15  /**
16   * .
17   * 
18   * @version $Revision$ $Date$
19   */
20  @SuppressWarnings( "all" )
21  public class InterfacesFeature
22      implements java.io.Serializable, java.rmi.Remote, SubInterface, SubInterfaceInPackage
23  {
24  
25        //--------------------------/
26       //- Class/Member Variables -/
27      //--------------------------/
28  
29      /**
30       * Field id.
31       */
32      private String id;
33  
34  
35        //-----------/
36       //- Methods -/
37      //-----------/
38  
39      /**
40       * Get the id field.
41       * 
42       * @return String
43       */
44      public String getId()
45      {
46          return this.id;
47      } //-- String getId()
48  
49      /**
50       * Set the id field.
51       * 
52       * @param id a id object.
53       */
54      public void setId( String id )
55      {
56          this.id = id;
57      } //-- void setId( String )
58  
59  }