1 28 package net.sf.jasperreports.engine.export.data; 29 30 import net.sf.jasperreports.engine.JRException; 31 32 33 37 public class BooleanTextValue extends TextValue 38 { 39 private final Boolean value; 40 41 public BooleanTextValue(String text, Boolean value) 42 { 43 super(text); 44 45 this.value = value; 46 } 47 48 public Boolean getValue() 49 { 50 return value; 51 } 52 53 public void handle(TextValueHandler handler) throws JRException 54 { 55 handler.handle(this); 56 } 57 58 } 59 | Popular Tags |