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

net.sf.dynamicreports.report.definition.crosstab.DRICrosstab Maven / Gradle / Ivy

/*
 * DynamicReports - Free Java reporting library for creating reports dynamically
 *
 * Copyright (C) 2010 - 2018 Ricardo Mariaca and the Dynamic Reports Contributors
 *
 * This file is part of DynamicReports.
 *
 * DynamicReports 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.
 *
 * DynamicReports 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 DynamicReports. If not, see .
 */
package net.sf.dynamicreports.report.definition.crosstab;

import net.sf.dynamicreports.report.constant.RunDirection;
import net.sf.dynamicreports.report.definition.component.DRIDimensionComponent;
import net.sf.dynamicreports.report.definition.style.DRIReportStyle;
import net.sf.dynamicreports.report.definition.style.DRISimpleStyle;

import java.util.List;

/**
 * 

DRICrosstab interface.

* * @author Ricardo Mariaca * */ public interface DRICrosstab extends DRIDimensionComponent { /** *

getDataset.

* * @return a {@link net.sf.dynamicreports.report.definition.crosstab.DRICrosstabDataset} object. */ public DRICrosstabDataset getDataset(); /** *

isRepeatColumnHeaders.

* * @return a {@link java.lang.Boolean} object. */ public Boolean isRepeatColumnHeaders(); /** *

isRepeatRowHeaders.

* * @return a {@link java.lang.Boolean} object. */ public Boolean isRepeatRowHeaders(); /** *

getColumnBreakOffset.

* * @return a {@link java.lang.Integer} object. */ public Integer getColumnBreakOffset(); /** *

getIgnoreWidth.

* * @return a {@link java.lang.Boolean} object. */ public Boolean getIgnoreWidth(); /** *

getRunDirection.

* * @return a {@link net.sf.dynamicreports.report.constant.RunDirection} object. */ public RunDirection getRunDirection(); /** *

getCellWidth.

* * @return a {@link java.lang.Integer} object. */ public Integer getCellWidth(); /** *

getCellHeight.

* * @return a {@link java.lang.Integer} object. */ public Integer getCellHeight(); /** *

getHighlightOddRows.

* * @return a {@link java.lang.Boolean} object. */ public Boolean getHighlightOddRows(); /** *

getOddRowStyle.

* * @return a {@link net.sf.dynamicreports.report.definition.style.DRISimpleStyle} object. */ public DRISimpleStyle getOddRowStyle(); /** *

getHighlightEvenRows.

* * @return a {@link java.lang.Boolean} object. */ public Boolean getHighlightEvenRows(); /** *

getEvenRowStyle.

* * @return a {@link net.sf.dynamicreports.report.definition.style.DRISimpleStyle} object. */ public DRISimpleStyle getEvenRowStyle(); /** *

getGroupStyle.

* * @return a {@link net.sf.dynamicreports.report.definition.style.DRIReportStyle} object. */ public DRIReportStyle getGroupStyle(); /** *

getGroupTotalStyle.

* * @return a {@link net.sf.dynamicreports.report.definition.style.DRIReportStyle} object. */ public DRIReportStyle getGroupTotalStyle(); /** *

getGrandTotalStyle.

* * @return a {@link net.sf.dynamicreports.report.definition.style.DRIReportStyle} object. */ public DRIReportStyle getGrandTotalStyle(); /** *

getCellStyle.

* * @return a {@link net.sf.dynamicreports.report.definition.style.DRIReportStyle} object. */ public DRIReportStyle getCellStyle(); /** *

getMeasureTitleStyle.

* * @return a {@link net.sf.dynamicreports.report.definition.style.DRIReportStyle} object. */ public DRIReportStyle getMeasureTitleStyle(); /** *

getWhenNoDataCell.

* * @return a {@link net.sf.dynamicreports.report.definition.crosstab.DRICrosstabCellContent} object. */ public DRICrosstabCellContent getWhenNoDataCell(); /** *

getHeaderCell.

* * @return a {@link net.sf.dynamicreports.report.definition.crosstab.DRICrosstabCellContent} object. */ public DRICrosstabCellContent getHeaderCell(); /** *

getColumnGroups.

* * @return a {@link java.util.List} object. */ public List> getColumnGroups(); /** *

getRowGroups.

* * @return a {@link java.util.List} object. */ public List> getRowGroups(); /** *

getVariables.

* * @return a {@link java.util.List} object. */ public List> getVariables(); /** *

getMeasures.

* * @return a {@link java.util.List} object. */ public List> getMeasures(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy