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 TrackedProperty.
10   * 
11   * @version $Revision$ $Date$
12   */
13  @SuppressWarnings( "all" )
14  public class TrackedProperty
15      implements java.io.Serializable
16  {
17  
18        //--------------------------/
19       //- Class/Member Variables -/
20      //--------------------------/
21  
22      /**
23       * Field value.
24       */
25      private String value;
26  
27      /**
28       * Field propertyName.
29       */
30      private String propertyName;
31  
32      /**
33       * Field skipValue.
34       */
35      private String skipValue;
36  
37      /**
38       * Field defaultValue.
39       */
40      private String defaultValue;
41  
42  
43        //-----------/
44       //- Methods -/
45      //-----------/
46  
47      /**
48       * Get the defaultValue field.
49       * 
50       * @return String
51       */
52      public String getDefaultValue()
53      {
54          return this.defaultValue;
55      } //-- String getDefaultValue()
56  
57      /**
58       * Get the propertyName field.
59       * 
60       * @return String
61       */
62      public String getPropertyName()
63      {
64          return this.propertyName;
65      } //-- String getPropertyName()
66  
67      /**
68       * Get the skipValue field.
69       * 
70       * @return String
71       */
72      public String getSkipValue()
73      {
74          return this.skipValue;
75      } //-- String getSkipValue()
76  
77      /**
78       * Get the value field.
79       * 
80       * @return String
81       */
82      public String getValue()
83      {
84          return this.value;
85      } //-- String getValue()
86  
87      /**
88       * Set the defaultValue field.
89       * 
90       * @param defaultValue a defaultValue object.
91       */
92      public void setDefaultValue( String defaultValue )
93      {
94          this.defaultValue = defaultValue;
95      } //-- void setDefaultValue( String )
96  
97      /**
98       * Set the propertyName field.
99       * 
100      * @param propertyName a propertyName object.
101      */
102     public void setPropertyName( String propertyName )
103     {
104         this.propertyName = propertyName;
105     } //-- void setPropertyName( String )
106 
107     /**
108      * Set the skipValue field.
109      * 
110      * @param skipValue a skipValue object.
111      */
112     public void setSkipValue( String skipValue )
113     {
114         this.skipValue = skipValue;
115     } //-- void setSkipValue( String )
116 
117     /**
118      * Set the value field.
119      * 
120      * @param value a value object.
121      */
122     public void setValue( String value )
123     {
124         this.value = value;
125     } //-- void setValue( String )
126 
127 }