00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 package de.picana.ant;
00014
00015
00022 public class Parameter {
00023
00024 private String name;
00025 private String value;
00026
00027
00029 public Parameter() {
00030 }
00031
00032 public String getName() {
00033 return this.name;
00034 }
00035
00036 public void setName(String name) {
00037 this.name = name;
00038 }
00039
00040 public String getValue() {
00041 return this.value;
00042 }
00043
00044 public void setValue(String value) {
00045 this.value = value;
00046 }
00047 }