View Javadoc

1   /*
2    * Param.java
3    *
4    * Created on 6 de Julho de 2005, 06:12
5    *
6    * To change this template, choose Tools | Options and locate the template under
7    * the Source Creation and Management node. Right-click the template and choose
8    * Open. You can then make changes to the template in the Source Editor.
9    */
10  
11  package org.thema.scriptware.digester;
12  
13  /***
14   *
15   * @author Eduardo M . Sasso
16   */
17  public class Param {
18      private String type;
19      private String name;
20      private String description;
21      private String defaultValue;
22      
23      /***
24       * Creates a new instance of Param
25       */
26      public Param() {
27      }
28      
29      public String getType() {
30          return type;
31      }
32      
33      public void setType(String type) {
34          this.type = type;
35      }
36      
37      public String getName() {
38          return name;
39      }
40      
41      public void setName(String name) {
42          this.name = name;
43      }
44      
45      public String getDescription() {
46          return description;
47      }
48      
49      public void setDescription(String description) {
50          this.description = description;
51      }
52      
53      public String getDefaultValue() {
54          return defaultValue;
55      }
56      
57      public void setDefaultValue(String defaultValue) {
58          this.defaultValue = defaultValue;
59      }
60   
61  }