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