1 37 package net.sourceforge.cruisecontrol.builders; 38 39 44 public class Property { 45 private String name; 46 private String value; 47 48 public void setName(String name) { 49 this.name = name; 50 } 51 52 public String getName() { 53 return name; 54 } 55 56 public void setValue(String value) { 57 this.value = value; 58 } 59 60 public String getValue() { 61 return value; 62 } 63 } 64 | Popular Tags |