1 28 package net.sf.jasperreports.engine.design; 29 30 import net.sf.jasperreports.engine.JRConstants; 31 import net.sf.jasperreports.engine.base.JRBaseSubreportReturnValue; 32 33 40 public class JRDesignSubreportReturnValue extends JRBaseSubreportReturnValue 41 { 42 43 46 private static final long serialVersionUID = JRConstants.SERIAL_VERSION_UID; 47 48 54 public void setSubreportVariable(String name) 55 { 56 this.subreportVariable = name; 57 } 58 59 65 public void setToVariable(String name) 66 { 67 this.toVariable = name; 68 } 69 70 76 public void setCalculation(byte calculation) 77 { 78 this.calculation = calculation; 79 } 80 81 87 public void setIncrementerFactoryClassName(String incrementerFactoryClassName) 88 { 89 this.incrementerFactoryClassName = incrementerFactoryClassName; 90 } 91 } 92 | Popular Tags |