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

net.sf.dynamicreports.design.base.crosstab.DRDesignCrosstabDataset 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.design.base.crosstab;

import net.sf.dynamicreports.design.base.DRDesignDataset;
import net.sf.dynamicreports.design.base.DRDesignGroup;
import net.sf.dynamicreports.design.constant.ResetType;
import net.sf.dynamicreports.design.definition.crosstab.DRIDesignCrosstabDataset;
import net.sf.dynamicreports.report.constant.Constants;

/**
 * 

DRDesignCrosstabDataset class.

* * @author Ricardo Mariaca * */ public class DRDesignCrosstabDataset implements DRIDesignCrosstabDataset { private static final long serialVersionUID = Constants.SERIAL_VERSION_UID; private DRDesignDataset subDataset; private Boolean dataPreSorted; private ResetType resetType; private DRDesignGroup resetGroup; /** {@inheritDoc} */ @Override public DRDesignDataset getSubDataset() { return subDataset; } /** *

Setter for the field subDataset.

* * @param subDataset a {@link net.sf.dynamicreports.design.base.DRDesignDataset} object. */ public void setSubDataset(DRDesignDataset subDataset) { this.subDataset = subDataset; } /** {@inheritDoc} */ @Override public Boolean getDataPreSorted() { return dataPreSorted; } /** *

Setter for the field dataPreSorted.

* * @param dataPreSorted a {@link java.lang.Boolean} object. */ public void setDataPreSorted(Boolean dataPreSorted) { this.dataPreSorted = dataPreSorted; } /** {@inheritDoc} */ @Override public ResetType getResetType() { return resetType; } /** *

Setter for the field resetType.

* * @param resetType a {@link net.sf.dynamicreports.design.constant.ResetType} object. */ public void setResetType(ResetType resetType) { this.resetType = resetType; } /** {@inheritDoc} */ @Override public DRDesignGroup getResetGroup() { return resetGroup; } /** *

Setter for the field resetGroup.

* * @param resetGroup a {@link net.sf.dynamicreports.design.base.DRDesignGroup} object. */ public void setResetGroup(DRDesignGroup resetGroup) { this.resetGroup = resetGroup; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy