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   * <code>&lt;class&gt;&lt;superClass&gt;SubClassLevel1&lt;/superClass&gt;&lt;/class&gt;</code>:
17   *        A class inheriting from SubClassLevel1.
18   * 
19   * @version $Revision$ $Date$
20   */
21  @SuppressWarnings( "all" )
22  public class SubClassLevel2
23      extends SubClassLevel1
24      implements java.io.Serializable
25  {
26  
27        //--------------------------/
28       //- Class/Member Variables -/
29      //--------------------------/
30  
31      /**
32       * Field subElement2.
33       */
34      private float subElement2 = 0.0f;
35  
36      /**
37       * Field subAttribute2.
38       */
39      private float subAttribute2 = 0.0f;
40  
41  
42        //-----------/
43       //- Methods -/
44      //-----------/
45  
46      /**
47       * Get the subAttribute2 field.
48       * 
49       * @return float
50       */
51      public float getSubAttribute2()
52      {
53          return this.subAttribute2;
54      } //-- float getSubAttribute2()
55  
56      /**
57       * Get the subElement2 field.
58       * 
59       * @return float
60       */
61      public float getSubElement2()
62      {
63          return this.subElement2;
64      } //-- float getSubElement2()
65  
66      /**
67       * Set the subAttribute2 field.
68       * 
69       * @param subAttribute2 a subAttribute2 object.
70       */
71      public void setSubAttribute2( float subAttribute2 )
72      {
73          this.subAttribute2 = subAttribute2;
74      } //-- void setSubAttribute2( float )
75  
76      /**
77       * Set the subElement2 field.
78       * 
79       * @param subElement2 a subElement2 object.
80       */
81      public void setSubElement2( float subElement2 )
82      {
83          this.subElement2 = subElement2;
84      } //-- void setSubElement2( float )
85  
86  }