/*
* JasperReports - Free Java Reporting Library.
* Copyright (C) 2001 - 2009 Jaspersoft Corporation. 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 <http://www.gnu.org/licenses/>.
*/
package net.sf.jasperreports.crosstabs;
import java.awt.Color;
import net.sf.jasperreports.engine.JRBox;
import net.sf.jasperreports.engine.JRBoxContainer;
import net.sf.jasperreports.engine.JRElementGroup;
import net.sf.jasperreports.engine.JRStyleContainer;
import net.sf.jasperreports.engine.type.ModeEnum;
import net.sf.jasperreports.engine.util.JRProperties;
/**
* Crosstab cell contents interface.
* <p>
* This interface is used for both crosstab row/column headers and data cells.
* <p>
* There are some restrictions/rules regarding crosstab cells:
* <ul>
* <li>subreports, crosstabs and charts are not allowed</li>
* <li>delayed evaluation for text fields and images is not allowed</li>
* <li>cells cannot split on multiple pages</li>
* </ul>
*
* @author Lucian Chirita (lucianc@users.sourceforge.net)
* @version $Id: JRCellContents.java 3775 2010-05-03 12:11:56Z teodord $
*/
public interface JRCellContents extends JRElementGroup, JRStyleContainer, JRBoxContainer
{
/**
* Horizontal stretch position indicating that the contents will be rendered on the left side.
* @deprecated Replaced by {@link net.sf.jasperreports.crosstabs.type.CrosstabColumnPositionEnum#LEFT LEFT}.
*/
public static final byte POSITION_X_LEFT = 1;
/**
* Horizontal stretch position indicating that the contents will be rendered on the center.
* @deprecated Replaced by {@link net.sf.jasperreports.crosstabs.type.CrosstabColumnPositionEnum#CENTER CENTER}.
*/
public static final byte POSITION_X_CENTER = 2;
/**
* Horizontal stretch position indicating that the contents will be rendered on the right side.
* @deprecated Replaced by {@link net.sf.jasperreports.crosstabs.type.CrosstabColumnPositionEnum#RIGHT RIGHT}.
*/
public static final byte POSITION_X_RIGHT = 3;
/**
* Horizontal stretch position indicating that the contents will be horizontally stretched.
* @deprecated Replaced by {@link net.sf.jasperreports.crosstabs.type.CrosstabColumnPositionEnum#STRETCH STRETCH}.
*/
public static final byte POSITION_X_STRETCH = 4;
/**
* Vertical stretch position indicating that the contents will be rendered on the top.
* @deprecated Replaced by {@link net.sf.jasperreports.crosstabs.type.CrosstabRowPositionEnum#TOP TOP}.
*/
public static final byte POSITION_Y_TOP = 1;
/**
* Vertical stretch position indicating that the contents will be rendered on the middle.
* @deprecated Replaced by {@link net.sf.jasperreports.crosstabs.type.CrosstabRowPositionEnum#MIDDLE MIDDLE}.
*/
public static final byte POSITION_Y_MIDDLE = 2;
/**
* Vertical stretch position indicating that the contents will be rendered on the bottom.
* @deprecated Replaced by {@link net.sf.jasperreports.crosstabs.type.CrosstabRowPositionEnum#BOTTOM BOTTOM}.
*/
public static final byte POSITION_Y_BOTTOM = 3;
/**
* Vertical stretch position indicating that the contents will be rendered vertically stretched.
* @deprecated Replaced by {@link net.sf.jasperreports.crosstabs.type.CrosstabRowPositionEnum#STRETCH STRETCH}.
*/
public static final byte POSITION_Y_STRETCH = 4;
/**
* Width or height value indicating that the value has not been computed.
*/
public static final int NOT_CALCULATED = Integer.MIN_VALUE;
/**
* A prefix used for properties that are set on frames generated by crosstab cells.
*
* @see net.sf.jasperreports.engine.JRPrintFrame
*/
public static final String PROPERTIES_PREFIX = JRProperties.PROPERTY_PREFIX + "crosstab.cell.";
/**
* A property that provides the type of the cell that generated a print frame.
*
* <p>
* The property value is one of
* <ul>
* <li>{@link #TYPE_CROSSTAB_HEADER}</li>
* <li>{@link #TYPE_COLUMN_HEADER}</li>
* <li>{@link #TYPE_ROW_HEADER}</li>
* <li>{@link #TYPE_DATA}</li>
* <li>{@link #TYPE_NO_DATA_CELL}</li>
* </ul>
*/
public static final String PROPERTY_TYPE = PROPERTIES_PREFIX + "type";
/**
* A property that provides the crosstab row span of a print frame.
*/
public static final String PROPERTY_ROW_SPAN = PROPERTIES_PREFIX + "row.span";
/**
* A property that provides the crosstab column span of a print frame.
*/
public static final String PROPERTY_COLUMN_SPAN = PROPERTIES_PREFIX + "column.span";
/**
* Type used by the {@link JRCrosstab#getHeaderCell() crosstab header cell}.
*
* @see #PROPERTY_TYPE
*/
public static final String TYPE_CROSSTAB_HEADER = "CrosstabHeader";
/**
* Type used by the row header cells.
*
* @see JRCrosstabRowGroup#getHeader()
* @see JRCrosstabRowGroup#getTotalHeader()
* @see #PROPERTY_TYPE
*/
public static final String TYPE_ROW_HEADER = "RowHeader";
/**
* Type used by the column header cells.
*
* @see JRCrosstabColumnGroup#getHeader()
* @see JRCrosstabColumnGroup#getTotalHeader()
* @see #PROPERTY_TYPE
*/
public static final String TYPE_COLUMN_HEADER = "ColumnHeader";
/**
* Type used by the {@link JRCrosstab#getCells() crosstab data cells}.
*
* @see #PROPERTY_TYPE
*/
public static final String TYPE_DATA = "Data";
/**
* Type used by the {@link JRCrosstab#getWhenNoDataCell() crosstab "no data" cell}.
*
* @see #PROPERTY_TYPE
*/
public static final String TYPE_NO_DATA_CELL = "NoDataCell";
/**
* Returns the cell background color.
* <p>
* The cell is filled with the background color only if the cell has opaque mode.
*
* @return the cell backcolor
*/
public Color getBackcolor();
/**
* Returns the cell border.
*
* @return the cell border
* @deprecated Replaced by {@link JRBoxContainer#getLineBox()}
*/
public JRBox getBox();
/**
* Returns the computed cell width.
*
* @return the computed cell width
* @see #NOT_CALCULATED
*/
public int getWidth();
/**
* Returns the computed cell height.
*
* @return the computed cell height
* @see #NOT_CALCULATED
*/
public int getHeight();
/**
* @deprecated Replaced by {@link #getModeValue()}.
*/
public Byte getMode();
/**
* Returns the cell transparency mode.
*
* @return {@link net.sf.jasperreports.engine.JRElement#MODE_OPAQUE MODE_OPAQUE}
* or {@link net.sf.jasperreports.engine.JRElement#MODE_TRANSPARENT MODE_TRANSPARENT}
*/
public ModeEnum getModeValue();
}