1 package net.sourceforge.formview; 2 3 public class LabelValue { 4 5 private String label; 6 private String value; 7 8 public LabelValue() { 9 this(null, null); 10 } 11 12 public LabelValue(String label, String value) { 13 this.label = label; 14 this.value = value; 15 } 16 17 public String getLabel() { 18 return label; 19 } 20 public void setLabel(String label) { 21 this.label = label; 22 } 23 public String getValue() { 24 return value; 25 } 26 public void setValue(String value) { 27 this.value = value; 28 } 29 30 31 } 32 | Popular Tags |