View Javadoc

1   /*
2    =================== DO NOT EDIT THIS FILE ====================
3    Generated by Modello
4    any modifications will be overwritten.
5    ==============================================================
6    */
7   
8   package org.apache.continuum.buildagent.model;
9   
10  /**
11   * Class Installation.
12   * 
13   * @version $Revision$ $Date$
14   */
15  @SuppressWarnings( "all" )
16  public class Installation
17      implements java.io.Serializable
18  {
19  
20        //--------------------------/
21       //- Class/Member Variables -/
22      //--------------------------/
23  
24      /**
25       * Field type.
26       */
27      private String type;
28  
29      /**
30       * Field varValue.
31       */
32      private String varValue;
33  
34      /**
35       * Field varName.
36       */
37      private String varName;
38  
39      /**
40       * Field name.
41       */
42      private String name;
43  
44  
45        //-----------/
46       //- Methods -/
47      //-----------/
48  
49      /**
50       * Get the name field.
51       * 
52       * @return String
53       */
54      public String getName()
55      {
56          return this.name;
57      } //-- String getName()
58  
59      /**
60       * Get the type field.
61       * 
62       * @return String
63       */
64      public String getType()
65      {
66          return this.type;
67      } //-- String getType()
68  
69      /**
70       * Get the varName field.
71       * 
72       * @return String
73       */
74      public String getVarName()
75      {
76          return this.varName;
77      } //-- String getVarName()
78  
79      /**
80       * Get the varValue field.
81       * 
82       * @return String
83       */
84      public String getVarValue()
85      {
86          return this.varValue;
87      } //-- String getVarValue()
88  
89      /**
90       * Set the name field.
91       * 
92       * @param name
93       */
94      public void setName( String name )
95      {
96          this.name = name;
97      } //-- void setName( String )
98  
99      /**
100      * Set the type field.
101      * 
102      * @param type
103      */
104     public void setType( String type )
105     {
106         this.type = type;
107     } //-- void setType( String )
108 
109     /**
110      * Set the varName field.
111      * 
112      * @param varName
113      */
114     public void setVarName( String varName )
115     {
116         this.varName = varName;
117     } //-- void setVarName( String )
118 
119     /**
120      * Set the varValue field.
121      * 
122      * @param varValue
123      */
124     public void setVarValue( String varValue )
125     {
126         this.varValue = varValue;
127     } //-- void setVarValue( String )
128 
129 }