1 21 package com.jaspersoft.jasperserver.util; 22 23 27 28 35 public class ListOfValuesItemBean { 36 37 private String label; 38 private String value; 40 public String getLabel() { 41 return label; 42 } 43 44 public void setLabel(String label) { 45 this.label = label; 46 } 47 48 public String getValue() { 49 return value; 50 } 51 52 public void setValue(String value) { 53 this.value = value; 54 } 55 } 56 | Popular Tags |