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