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 PropertyName.
10   * 
11   * @version $Revision$ $Date$
12   */
13  @SuppressWarnings( "all" )
14  public class PropertyName
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        //-----------/
34       //- Methods -/
35      //-----------/
36  
37      /**
38       * Get the propertyName field.
39       * 
40       * @return String
41       */
42      public String getPropertyName()
43      {
44          return this.propertyName;
45      } //-- String getPropertyName()
46  
47      /**
48       * Get the value field.
49       * 
50       * @return String
51       */
52      public String getValue()
53      {
54          return this.value;
55      } //-- String getValue()
56  
57      /**
58       * Set the propertyName field.
59       * 
60       * @param propertyName a propertyName object.
61       */
62      public void setPropertyName( String propertyName )
63      {
64          this.propertyName = propertyName;
65      } //-- void setPropertyName( String )
66  
67      /**
68       * Set the value field.
69       * 
70       * @param value a value object.
71       */
72      public void setValue( String value )
73      {
74          this.value = value;
75      } //-- void setValue( String )
76  
77  }