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