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 SuperThing.
17   * 
18   * @version $Revision$ $Date$
19   */
20  @SuppressWarnings( "all" )
21  public class SuperThing
22      implements java.io.Serializable, java.lang.Cloneable
23  {
24  
25        //-----------/
26       //- Methods -/
27      //-----------/
28  
29      /**
30       * Method clone.
31       * 
32       * @return SuperThing
33       */
34      public SuperThing clone()
35      {
36          try
37          {
38              SuperThing/../../../../org/codehaus/modello/test/features/SuperThing.html#SuperThing">SuperThing copy = (SuperThing) super.clone();
39  
40              return copy;
41          }
42          catch ( java.lang.Exception ex )
43          {
44              throw (java.lang.RuntimeException) new java.lang.UnsupportedOperationException( getClass().getName()
45                  + " does not support clone()" ).initCause( ex );
46          }
47      } //-- SuperThing clone()
48  
49  }