Interface GenericElementXlsxMetadataHandler
-
- All Superinterfaces:
GenericElementHandler
public interface GenericElementXlsxMetadataHandler extends GenericElementHandler
A generic print element XLSX metadata export handler.- Author:
- Sanda Zaharia (shertage@users.sourceforge.net)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
exportElement(JRXlsxExporterContext exporterContext, JRGenericPrintElement element, int colIndex, int rowIndex, JRStyle parentStyle)
Exports a generic element.JRPrintImage
getImage(JRXlsxExporterContext exporterContext, JRGenericPrintElement element)
Creates an equivalent image of theJRGenericPrintElement
element to be exported instead.-
Methods inherited from interface net.sf.jasperreports.engine.export.GenericElementHandler
toExport
-
-
-
-
Method Detail
-
exportElement
void exportElement(JRXlsxExporterContext exporterContext, JRGenericPrintElement element, int colIndex, int rowIndex, JRStyle parentStyle) throws JRException
Exports a generic element.Access to the exporter output and environment is provided via the
JRXlsxExporterContext
argument.- Parameters:
exporterContext
- the exporter contextelement
- the generic element to export- Throws:
JRException
-
getImage
JRPrintImage getImage(JRXlsxExporterContext exporterContext, JRGenericPrintElement element) throws JRException
Creates an equivalent image of theJRGenericPrintElement
element to be exported instead.- Parameters:
element
- the generic element to export- Returns:
- JRPrintImage the equivalent image
- Throws:
JRException
-
-