1 16 17 package org.apache.jetspeed.util.types; 18 19 20 27 28 29 public class Parameter { 30 31 32 33 35 private String _name; 36 37 private String _value; 38 39 private String _type; 40 41 43 45 public String getName() { 46 return this._name; 47 } 48 49 50 public void setName ( String _name ) { 51 this._name = _name; 52 } 53 54 public String getValue() { 55 return this._value; 56 } 57 58 59 public void setValue ( String _value ) { 60 this._value = _value; 61 } 62 63 public String getType() { 64 return this._type; 65 } 66 67 68 public void setType ( String _type ) { 69 this._type = _type; 70 } 71 72 } | Popular Tags |