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

net.sf.jasperreports.engine.JRBreak Maven / Gradle / Ivy

There is a newer version: 6.21.3
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.engine;

import net.sf.jasperreports.annotations.properties.Property;
import net.sf.jasperreports.annotations.properties.PropertyScope;
import net.sf.jasperreports.engine.type.BreakTypeEnum;
import net.sf.jasperreports.properties.PropertyConstants;


/**
 * An abstract representation of a break element.
 * 

* The break element was added to the list of elements that can be placed inside a * band. This is used for introducing a page break or column break at a specified position * within the band. *

* In many ways, the break element behaves like any other normal element placed in a band. * For instance, it can be conditionally displayed using <printWhenExpression>, * and it can float within the band if positionType="Float" is used. Other common element * properties like colors and styles do not make any sense for this kind of element, because it * behaves like an invisible horizontal line that crosses the whole parent band and indicates the * y position where a page break or column break should occur when the band content is * rendered during the report-filling process. *

* Whether a page break or a column break should be introduced is specified using the type * attribute available for this element (see {@link #getTypeValue()}). By default, page breaks are created. * * @author Teodor Danciu ([email protected]) */ public interface JRBreak extends JRElement { /** * Property that determines how page breaks are to be handled in reports that are not paginated. * *

* The property value can be one of *

    *
  • {@link #PAGE_BREAK_NO_PAGINATION_IGNORE}
  • *
  • {@link #PAGE_BREAK_NO_PAGINATION_APPLY}
  • *
*

* *

* The property can be set globally, at report level or at element level. * The default behaviour is to ignore page breaks in non paginated reports. *

*/ @Property( category = PropertyConstants.CATEGORY_FILL, defaultValue = "ignore", scopes = {PropertyScope.CONTEXT, PropertyScope.REPORT, PropertyScope.BREAK_ELEMENT}, sinceVersion = PropertyConstants.VERSION_5_0_4 ) String PROPERTY_PAGE_BREAK_NO_PAGINATION = JRPropertiesUtil.PROPERTY_PREFIX + "page.break.no.pagination"; /** * Value for {@link #PROPERTY_PAGE_BREAK_NO_PAGINATION} that results in page breaks * being ignored in non paginated reports. */ String PAGE_BREAK_NO_PAGINATION_IGNORE = "ignore"; /** * Value for {@link #PROPERTY_PAGE_BREAK_NO_PAGINATION} that results in page breaks * being honoured in non paginated reports. */ String PAGE_BREAK_NO_PAGINATION_APPLY = "apply"; /** * Gets the break type. * @return a value representing one of the break type constants in {@link BreakTypeEnum} */ public BreakTypeEnum getTypeValue(); /** * Sets the break type. * @param breakTypeEnum a value representing one of the break type constants in {@link BreakTypeEnum} */ public void setType(BreakTypeEnum breakTypeEnum); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy