View Javadoc

1   /*
2    =================== DO NOT EDIT THIS FILE ====================
3    Generated by Modello 1.0.1 on 2009-09-09 03:30:24,
4    any modifications will be overwritten.
5    ==============================================================
6    */
7   
8   package org.apache.maven.model;
9   
10  /**
11   * Information about one of the committers on this project.
12   * 
13   * @version $Revision$ $Date$
14   */
15  public class Developer
16      extends Contributor
17      implements java.io.Serializable
18  {
19  
20        //--------------------------/
21       //- Class/Member Variables -/
22      //--------------------------/
23  
24      /**
25       * The unique ID of the developer in the SCM.
26       */
27      private String id;
28  
29  
30        //-----------/
31       //- Methods -/
32      //-----------/
33  
34      /**
35       * Get the unique ID of the developer in the SCM.
36       * 
37       * @return String
38       */
39      public String getId()
40      {
41          return this.id;
42      } //-- String getId()
43  
44      /**
45       * Set the unique ID of the developer in the SCM.
46       * 
47       * @param id
48       */
49      public void setId( String id )
50      {
51          this.id = id;
52      } //-- void setId( String )
53  
54  
55  }