1 28 package net.sf.jasperreports.engine.fill; 29 30 import java.util.Set ; 31 32 import net.sf.jasperreports.engine.JRConstants; 33 34 40 public class JRRecordedValuesPrintText extends JRTemplatePrintText implements JRRecordedValuesPrintElement 41 { 42 private static final long serialVersionUID = JRConstants.SERIAL_VERSION_UID; 43 44 private JRRecordedValues recordedValues; 45 46 public JRRecordedValuesPrintText(JRTemplateText text) 47 { 48 super(text); 49 } 50 51 public JRRecordedValues getRecordedValues() 52 { 53 return recordedValues; 54 } 55 56 public void deleteRecordedValues() 57 { 58 recordedValues = null; 59 } 60 61 public void initRecordedValues(Set evaluationTimes) 62 { 63 recordedValues = new JRRecordedValues(evaluationTimes); 64 } 65 } 66 | Popular Tags |