View Javadoc

1   /*
2    =================== DO NOT EDIT THIS FILE ====================
3    Generated by Modello
4    any modifications will be overwritten.
5    ==============================================================
6    */
7   
8   package org.apache.maven.continuum.model.project.v1_0_9;
9   
10    //---------------------------------/
11   //- Imported classes and packages -/
12  //---------------------------------/
13  
14  import org.apache.maven.continuum.model.scm.v1_0_9.ChangeFile;
15  import org.apache.maven.continuum.model.scm.v1_0_9.ChangeSet;
16  import org.apache.maven.continuum.model.scm.v1_0_9.ScmResult;
17  import org.apache.maven.continuum.model.scm.v1_0_9.SuiteResult;
18  import org.apache.maven.continuum.model.scm.v1_0_9.TestCaseFailure;
19  import org.apache.maven.continuum.model.scm.v1_0_9.TestResult;
20  import org.apache.maven.continuum.model.system.v1_0_9.NotificationAddress;
21  import org.apache.maven.continuum.model.system.v1_0_9.SystemConfiguration;
22  
23  /**
24   * Class ProjectDependency.
25   * 
26   * @version $Revision$ $Date$
27   */
28  @SuppressWarnings( "all" )
29  public class ProjectDependency
30      implements java.io.Serializable
31  {
32  
33        //--------------------------/
34       //- Class/Member Variables -/
35      //--------------------------/
36  
37      /**
38       * Field groupId.
39       */
40      private String groupId;
41  
42      /**
43       * Field artifactId.
44       */
45      private String artifactId;
46  
47      /**
48       * Field version.
49       */
50      private String version;
51  
52  
53        //-----------/
54       //- Methods -/
55      //-----------/
56  
57      /**
58       * Get the artifactId field.
59       * 
60       * @return String
61       */
62      public String getArtifactId()
63      {
64          return this.artifactId;
65      } //-- String getArtifactId()
66  
67      /**
68       * Get the groupId field.
69       * 
70       * @return String
71       */
72      public String getGroupId()
73      {
74          return this.groupId;
75      } //-- String getGroupId()
76  
77      /**
78       * Get the version field.
79       * 
80       * @return String
81       */
82      public String getVersion()
83      {
84          return this.version;
85      } //-- String getVersion()
86  
87      /**
88       * Set the artifactId field.
89       * 
90       * @param artifactId
91       */
92      public void setArtifactId( String artifactId )
93      {
94          this.artifactId = artifactId;
95      } //-- void setArtifactId( String )
96  
97      /**
98       * Set the groupId field.
99       * 
100      * @param groupId
101      */
102     public void setGroupId( String groupId )
103     {
104         this.groupId = groupId;
105     } //-- void setGroupId( String )
106 
107     /**
108      * Set the version field.
109      * 
110      * @param version
111      */
112     public void setVersion( String version )
113     {
114         this.version = version;
115     } //-- void setVersion( String )
116 
117 }