All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.ibizsys.central.plugin.jr.util.IJasperReportRuntime Maven / Gradle / Ivy

There is a newer version: 8.1.0.559
Show newest version
package net.ibizsys.central.plugin.jr.util;

/**
 * JasperReport 运行时对象接口
 * @author lionlau
 *
 */
public interface IJasperReportRuntime {

	/**
	 * 报表上下文对象
	 */
	public final static String PARAM_REPORTCONTEXT = "SRFRC";
	
	
	/**
	 * 打印上下文对象
	 */
	public final static String PARAM_PRINTCONTEXT = "SRFPC";
	
	/**
	 * 内容类型,PDF
	 */
	final static String CONTENTTYPE_PDF = "PDF";

	/**
	 * 内容类型,HTML
	 */
	final static String CONTENTTYPE_HTML = "HTML";

	/**
	 * 内容类型,EXCEL
	 */
	final static String CONTENTTYPE_EXCEL = "EXCEL";
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy