1 28 package net.sf.jasperreports.engine.fill; 29 30 import net.sf.jasperreports.engine.JRException; 31 32 33 39 public interface JRSubreportRunner 40 { 41 46 boolean isFilling(); 47 48 56 JRSubreportRunResult start() throws JRException; 57 58 69 JRSubreportRunResult resume() throws JRException; 70 71 76 void reset() throws JRException; 77 78 88 void cancel() throws JRException; 89 90 100 void suspend() throws JRException; 101 } 102 | Popular Tags |