Files
HRMS/hrmsEjb/net/sf/jasperreports/engine/fill/JRSubreportRunner.java
2025-07-28 13:56:49 +05:30

18 lines
380 B
Java

package net.sf.jasperreports.engine.fill;
import net.sf.jasperreports.engine.JRException;
public interface JRSubreportRunner {
boolean isFilling();
JRSubreportRunResult start() throws JRException;
JRSubreportRunResult resume() throws JRException;
void reset() throws JRException;
void cancel() throws JRException;
void suspend() throws JRException;
}