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

net.sf.jasperreports.customvisualization.Processor Maven / Gradle / Ivy

There is a newer version: 6.21.4
Show newest version
/*
 * JasperReports - Free Java Reporting Library.
 * Copyright (C) 2001 - 2019 TIBCO Software Inc. All rights reserved.
 * http://www.jaspersoft.com
 *
 * Unless you have purchased a commercial license agreement from Jaspersoft,
 * the following license terms apply:
 *
 * This program is part of JasperReports.
 *
 * JasperReports is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * JasperReports is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with JasperReports. If not, see .
 */
package net.sf.jasperreports.customvisualization;

import java.util.Map;

/**
 *
 * @author Giulio Toffoli ([email protected])
 */
public interface Processor 
{
	public static final String CONF_WIDTH  = "width";
	public static final String CONF_HEIGHT = "height";
	public static final String CONF_SERIES = "series";
	public static final String CONF_PRINT_ELEMENT = "element";
	
	/**
	 * Process a set of values, to build the script that will perform the
	 * visualization.
	 * 
	 * Why a Map and not a serious object?! Well, to be able to implement this
	 * class without having to declare any dependency by JasperReports.
	 * 
	 * Moreover, it is not really required to implement this interface, it is
	 * enough that a class provides this method, the component will look for it!
	 * 
	 * Input: a Map with the component, the item properties and the series.
	 * 
	 * 
	 * 
	 * 
	 *	  
	 *	  
	 *	  
	 * 
	 * 
	 *	  
	 *	  
	 *	  
	 * 
	 * 
	 *	  
	 *	  
	 *	  
	 * 
	 * 
	 *	  
	 *	  
	 *	  
	 * 
	 * 
	 *	  
	 *	  
	 *	  
	 * 
	 * 
keyTypeDescription
Processor.CONF_PRINT_ELEMENTnet.sf.jasperreports.engine.fill.JRTemplateGenericPrintElementThe print element produced by the fill process
Processor.CONF_SERIESCollectiona collection of series, which are List of Maps.
Processor.CONF_WIDTHIntegerthe element width
Processor.CONF_HEIGHTIntegerthe element height
Processor.CONF_KEYStringthe element key/id to be used in the HTML
* * * Series are represented as lists of Maps. The Map is the record, and contain the * properties set for the series. * * * The result should include at least the "script key. * output_html: a string with the main script, optional styles and other things that will be output * * @param configuration the Map that will be passed to the velocity Template. * @return the processing result */ public Map processConfiguration( Map configuration ); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy