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   * Class Thingy.
17   * 
18   * @version $Revision$ $Date$
19   */
20  @SuppressWarnings( "all" )
21  public class Thingy
22      extends SuperThing
23      implements java.io.Serializable, java.lang.Cloneable
24  {
25  
26        //--------------------------/
27       //- Class/Member Variables -/
28      //--------------------------/
29  
30      /**
31       * Field someContent.
32       */
33      private String someContent;
34  
35  
36        //-----------/
37       //- Methods -/
38      //-----------/
39  
40      /**
41       * Method clone.
42       * 
43       * @return Thingy
44       */
45      public Thingy clone()
46      {
47          try
48          {
49              Thingy="../../../../../org/codehaus/modello/test/features/Thingy.html#Thingy">Thingy copy = (Thingy) super.clone();
50  
51              return copy;
52          }
53          catch ( java.lang.Exception ex )
54          {
55              throw (java.lang.RuntimeException) new java.lang.UnsupportedOperationException( getClass().getName()
56                  + " does not support clone()" ).initCause( ex );
57          }
58      } //-- Thingy clone()
59  
60      /**
61       * Get the someContent field.
62       * 
63       * @return String
64       */
65      public String getSomeContent()
66      {
67          return this.someContent;
68      } //-- String getSomeContent()
69  
70      /**
71       * Set the someContent field.
72       * 
73       * @param someContent a someContent object.
74       */
75      public void setSomeContent( String someContent )
76      {
77          this.someContent = someContent;
78      } //-- void setSomeContent( String )
79  
80  }