View Javadoc

1   /*
2    =================== DO NOT EDIT THIS FILE ====================
3    Generated by Modello 1.4.1 on 2012-01-20 18:05:12,
4    any modifications will be overwritten.
5    ==============================================================
6    */
7   
8   package org.apache.maven.plugin.descriptor.model;
9   
10  /**
11   * A parameter configuration.
12   * 
13   * @version $Revision$ $Date$
14   */
15  @SuppressWarnings( "all" )
16  public class Configuration
17      implements java.io.Serializable
18  {
19  
20        //--------------------------/
21       //- Class/Member Variables -/
22      //--------------------------/
23  
24      /**
25       * Parameter expression.
26       */
27      private String expression;
28  
29      /**
30       * Field implementation.
31       */
32      private String implementation;
33  
34      /**
35       * Field defaultValue.
36       */
37      private String defaultValue;
38  
39  
40        //-----------/
41       //- Methods -/
42      //-----------/
43  
44      /**
45       * Get the defaultValue field.
46       * 
47       * @return String
48       */
49      public String getDefaultValue()
50      {
51          return this.defaultValue;
52      } //-- String getDefaultValue()
53  
54      /**
55       * Get parameter expression.
56       * 
57       * @return String
58       */
59      public String getExpression()
60      {
61          return this.expression;
62      } //-- String getExpression()
63  
64      /**
65       * Get the implementation field.
66       * 
67       * @return String
68       */
69      public String getImplementation()
70      {
71          return this.implementation;
72      } //-- String getImplementation()
73  
74      /**
75       * Set the defaultValue field.
76       * 
77       * @param defaultValue
78       */
79      public void setDefaultValue( String defaultValue )
80      {
81          this.defaultValue = defaultValue;
82      } //-- void setDefaultValue( String )
83  
84      /**
85       * Set parameter expression.
86       * 
87       * @param expression
88       */
89      public void setExpression( String expression )
90      {
91          this.expression = expression;
92      } //-- void setExpression( String )
93  
94      /**
95       * Set the implementation field.
96       * 
97       * @param implementation
98       */
99      public void setImplementation( String implementation )
100     {
101         this.implementation = implementation;
102     } //-- void setImplementation( String )
103 
104 }