View Javadoc

1   /*
2    =================== DO NOT EDIT THIS FILE ====================
3    Generated by Modello 1.4.1 on 2011-06-14 21:26:11,
4    any modifications will be overwritten.
5    ==============================================================
6    */
7   
8   package org.apache.maven.plugin.resources.remote;
9   
10  /**
11   * A single supplement.
12   * 
13   * @version $Revision: 816514 $ $Date: 2012-05-08 11:24:24 +0000 (Tue, 08 May 2012) $
14   */
15  @SuppressWarnings( "all" )
16  public class Supplement
17      implements java.io.Serializable
18  {
19  
20        //--------------------------/
21       //- Class/Member Variables -/
22      //--------------------------/
23  
24      /**
25       * Snippets of POM xml files used to supplement the data model.
26       */
27      private Object project;
28  
29  
30        //-----------/
31       //- Methods -/
32      //-----------/
33  
34      /**
35       * Get snippets of POM xml files used to supplement the data
36       * model.
37       * 
38       * @return Object
39       */
40      public Object getProject()
41      {
42          return this.project;
43      } //-- Object getProject()
44  
45      /**
46       * Set snippets of POM xml files used to supplement the data
47       * model.
48       * 
49       * @param project
50       */
51      public void setProject( Object project )
52      {
53          this.project = project;
54      } //-- void setProject( Object )
55  
56  }