1 16 17 package com.jaspersoft.jasperserver.api.metadata.xml.domain.impl; 18 19 26 public class ListItem { 27 28 private Object value; 29 private String label; 30 31 32 public ListItem() { 33 } 34 35 36 public ListItem(String label, Object value) { 37 this.value = value; 38 this.label = label; 39 } 40 41 public Object getValue() { 42 return value; 43 } 44 45 public void setValue(Object value) { 46 this.value = value; 47 } 48 49 public String getLabel() { 50 return label; 51 } 52 53 public void setLabel(String label) { 54 this.label = label; 55 } 56 57 } 58 | Popular Tags |