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 Output.
10   * 
11   * @version $Revision$ $Date$
12   */
13  @SuppressWarnings( "all" )
14  public class Output
15      implements java.io.Serializable
16  {
17  
18        //--------------------------/
19       //- Class/Member Variables -/
20      //--------------------------/
21  
22      /**
23       * Patterns to exclude output artifacts applicable to all
24       * projects in the build.
25       */
26      private OutputExclude exclude;
27  
28  
29        //-----------/
30       //- Methods -/
31      //-----------/
32  
33      /**
34       * Get patterns to exclude output artifacts applicable to all
35       * projects in the build.
36       * 
37       * @return OutputExclude
38       */
39      public OutputExclude getExclude()
40      {
41          return this.exclude;
42      } //-- OutputExclude getExclude()
43  
44      /**
45       * Set patterns to exclude output artifacts applicable to all
46       * projects in the build.
47       * 
48       * @param exclude a exclude object.
49       */
50      public void setExclude( OutputExclude exclude )
51      {
52          this.exclude = exclude;
53      } //-- void setExclude( OutputExclude )
54  
55  }