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.buildcache.xml.config;
7   
8   /**
9    * Class MultiModule.
10   * 
11   * @version $Revision$ $Date$
12   */
13  @SuppressWarnings( "all" )
14  public class MultiModule
15      implements java.io.Serializable
16  {
17  
18        //--------------------------/
19       //- Class/Member Variables -/
20      //--------------------------/
21  
22      /**
23       * Section to specify how to discover multi module projects.
24       */
25      private Discovery discovery;
26  
27  
28        //-----------/
29       //- Methods -/
30      //-----------/
31  
32      /**
33       * Get section to specify how to discover multi module
34       * projects.
35       * 
36       * @return Discovery
37       */
38      public Discovery getDiscovery()
39      {
40          return this.discovery;
41      } //-- Discovery getDiscovery()
42  
43      /**
44       * Set section to specify how to discover multi module
45       * projects.
46       * 
47       * @param discovery a discovery object.
48       */
49      public void setDiscovery( Discovery discovery )
50      {
51          this.discovery = discovery;
52      } //-- void setDiscovery( Discovery )
53  
54  }