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 AnnotationTest.
17   * 
18   * @version $Revision$ $Date$
19   */
20  @SuppressWarnings( "all" )
21  @Deprecated
22  public class AnnotationTest
23      implements java.io.Serializable
24  {
25  
26        //--------------------------/
27       //- Class/Member Variables -/
28      //--------------------------/
29  
30      /**
31       * Field anyField.
32       */
33      @Deprecated
34      private String anyField;
35  
36  
37        //-----------/
38       //- Methods -/
39      //-----------/
40  
41      /**
42       * Get the anyField field.
43       * 
44       * @return String
45       */
46      public String getAnyField()
47      {
48          return this.anyField;
49      } //-- String getAnyField()
50  
51      /**
52       * Set the anyField field.
53       * 
54       * @param anyField a anyField object.
55       */
56      public void setAnyField( String anyField )
57      {
58          this.anyField = anyField;
59      } //-- void setAnyField( String )
60  
61  }