1 28 package net.sf.jasperreports.engine.export.data; 29 30 import net.sf.jasperreports.engine.JRException; 31 32 33 37 public abstract class TextValue 38 { 39 private final String text; 40 41 public TextValue(String text) 42 { 43 this.text = text; 44 } 45 46 public String getText() 47 { 48 return text; 49 } 50 51 public abstract void handle(TextValueHandler handler) throws JRException; 52 } 53 | Popular Tags |