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   * 
17   *         Name and Email of the person to be credited for this
18   * change. This can be used when a patch is submitted by a
19   * non-committer.
20   *       
21   * 
22   * @version $Revision$ $Date$
23   */
24  @SuppressWarnings( "all" )
25  public class DueTo
26      implements java.io.Serializable
27  {
28  
29        //--------------------------/
30       //- Class/Member Variables -/
31      //--------------------------/
32  
33      /**
34       * Name of the person to be credited for this change.
35       */
36      private String name;
37  
38      /**
39       * Email of the person to be credited for this change.
40       */
41      private String email;
42  
43  
44        //-----------/
45       //- Methods -/
46      //-----------/
47  
48      /**
49       * Get email of the person to be credited for this change.
50       * 
51       * @return String
52       */
53      public String getEmail()
54      {
55          return this.email;
56      } //-- String getEmail()
57  
58      /**
59       * Get name of the person to be credited for this change.
60       * 
61       * @return String
62       */
63      public String getName()
64      {
65          return this.name;
66      } //-- String getName()
67  
68      /**
69       * Set email of the person to be credited for this change.
70       * 
71       * @param email a email object.
72       */
73      public void setEmail( String email )
74      {
75          this.email = email;
76      } //-- void setEmail( String )
77  
78      /**
79       * Set name of the person to be credited for this change.
80       * 
81       * @param name a name object.
82       */
83      public void setName( String name )
84      {
85          this.name = name;
86      } //-- void setName( String )
87  
88  }