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