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

net.sf.jasperreports.export.DocxReportConfiguration Maven / Gradle / Ivy

There is a newer version: 6.21.3
Show newest version
/*
 * JasperReports - Free Java Reporting Library.
 * Copyright (C) 2001 - 2016 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.export;

import net.sf.jasperreports.annotations.properties.Property;
import net.sf.jasperreports.annotations.properties.PropertyScope;
import net.sf.jasperreports.engine.JRPrintFrame;
import net.sf.jasperreports.engine.JRPrintHyperlink;
import net.sf.jasperreports.engine.JRPropertiesUtil;
import net.sf.jasperreports.engine.export.ooxml.JRDocxExporter;
import net.sf.jasperreports.export.annotations.ExporterParameter;
import net.sf.jasperreports.export.annotations.ExporterProperty;
import net.sf.jasperreports.properties.PropertyConstants;


/**
 * Interface containing settings used by the DOCX exporter.
 *
 * @see JRDocxExporter
 * 
 * @author Teodor Danciu ([email protected])
 */
public interface DocxReportConfiguration extends ReportExportConfiguration
{
	/**
	 * This property serves as default value for the {@link #isFramesAsNestedTables()} export configuration setting.
	 * 

* The property itself defaults to true. *

* @see JRPropertiesUtil */ @Property( category = PropertyConstants.CATEGORY_EXPORT, defaultValue = PropertyConstants.BOOLEAN_TRUE, scopes = {PropertyScope.CONTEXT, PropertyScope.REPORT, PropertyScope.FRAME}, sinceVersion = PropertyConstants.VERSION_3_5_3, valueType = Boolean.class ) public static final String PROPERTY_FRAMES_AS_NESTED_TABLES = JRPropertiesUtil.PROPERTY_PREFIX + "export.docx.frames.as.nested.tables"; /** * This property serves as default value for the {@link #isFlexibleRowHeight} export configuration setting. *

* The property itself defaults to false. *

* @see JRPropertiesUtil */ @Property( category = PropertyConstants.CATEGORY_EXPORT, defaultValue = PropertyConstants.BOOLEAN_FALSE, scopes = {PropertyScope.CONTEXT, PropertyScope.REPORT}, sinceVersion = PropertyConstants.VERSION_3_6_1, valueType = Boolean.class ) public static final String PROPERTY_FLEXIBLE_ROW_HEIGHT = JRPropertiesUtil.PROPERTY_PREFIX + "export.docx.flexible.row.height"; /** * This property serves as default value for the {@link #isNewLineAsParagraph} export configuration setting. *

* The property itself defaults to false. *

* @see JRPropertiesUtil */ @Property( category = PropertyConstants.CATEGORY_EXPORT, defaultValue = PropertyConstants.BOOLEAN_FALSE, scopes = {PropertyScope.CONTEXT, PropertyScope.REPORT, PropertyScope.TEXT_ELEMENT}, sinceVersion = PropertyConstants.VERSION_6_1_1, valueType = Boolean.class ) public static final String PROPERTY_NEW_LINE_AS_PARAGRAPH = JRPropertiesUtil.PROPERTY_PREFIX + "export.docx.new.line.as.paragraph"; /** * Property that provides a default value for the {@link #isIgnoreHyperlink()} export configuration flag. */ @Property( category = PropertyConstants.CATEGORY_EXPORT, scopes = {PropertyScope.CONTEXT, PropertyScope.REPORT, PropertyScope.HYPERLINK}, sinceVersion = PropertyConstants.VERSION_5_1_2, valueType = Boolean.class ) public static final String PROPERTY_IGNORE_HYPERLINK = JRPropertiesUtil.PROPERTY_PREFIX + "export.docx." + JRPrintHyperlink.PROPERTY_IGNORE_HYPERLINK_SUFFIX; /** * Indicates whether {@link JRPrintFrame frames} are to be exported as nested tables. *

* If set to false, the frame contents will be integrated into the master/page table. *

* @see #PROPERTY_FRAMES_AS_NESTED_TABLES */ @SuppressWarnings("deprecation") @ExporterParameter( type=net.sf.jasperreports.engine.export.ooxml.JRDocxExporterParameter.class, name="FRAMES_AS_NESTED_TABLES" ) @ExporterProperty( value=PROPERTY_FRAMES_AS_NESTED_TABLES, booleanDefault=true ) public Boolean isFramesAsNestedTables(); /** * Indicates whether table rows can grow if more text is added into cells. *

* If set to false, the table rows do not increase in height automatically and the user has to enlarge them manually. *

* @see #PROPERTY_FLEXIBLE_ROW_HEIGHT */ @SuppressWarnings("deprecation") @ExporterParameter( type=net.sf.jasperreports.engine.export.ooxml.JRDocxExporterParameter.class, name="FLEXIBLE_ROW_HEIGHT" ) @ExporterProperty( value=PROPERTY_FLEXIBLE_ROW_HEIGHT, booleanDefault=false ) public Boolean isFlexibleRowHeight(); /** * Indicates whether the newline element present in a justified paragraph introduces a new justified paragraph. *

* If set to true, the text line before the new paragraph will lose the justified alignment. *

* @see #PROPERTY_NEW_LINE_AS_PARAGRAPH */ @ExporterProperty( value=PROPERTY_NEW_LINE_AS_PARAGRAPH, booleanDefault=false ) public Boolean isNewLineAsParagraph(); /** * @see #PROPERTY_IGNORE_HYPERLINK */ @ExporterProperty( value=PROPERTY_IGNORE_HYPERLINK, booleanDefault=false ) public Boolean isIgnoreHyperlink(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy