Methods in net.sf.jasperreports.engine.fill with parameters of type JRFillBand |
protected void |
JRBaseFiller.addBoundElement(JRFillElement element,
JRPrintElement printElement,
byte evaluationType,
JRGroup group,
JRFillBand band)
|
protected void |
JRHorizontalFiller.fillColumnBand(JRFillBand band,
byte evaluation)
|
protected void |
JRVerticalFiller.fillColumnBand(JRFillBand band,
byte evaluation)
|
protected void |
JRHorizontalFiller.fillFixedBand(JRFillBand band,
byte evaluation)
|
protected void |
JRVerticalFiller.fillFixedBand(JRFillBand band,
byte evaluation)
|
protected void |
JRHorizontalFiller.fillFixedBand(JRFillBand band,
byte evaluation,
boolean allowShrinking)
|
protected void |
JRHorizontalFiller.fillPageBand(JRFillBand band,
byte evaluation)
private void fillColumnBreak(
byte evalPrevPage,
byte evalNextPage
) throws JRException
{
if (columnIndex == columnCount - 1)
{
fillPageBreak(false, evalPrevPage, evalNextPage);
}
else
{
fillColumnFooter(evalPrevPage);
resolveGroupBoundImages(evalPrevPage, false);
resolveColumnBoundImages(evalPrevPage);
resolveGroupBoundTexts(evalPrevPage, false);
resolveColumnBoundTexts(evalPrevPage);
scriptlet.callBeforeColumnInit();
calculator.initializeVariables(JRVariable.RESET_TYPE_COLUMN);
scriptlet.callAfterColumnInit();
columnIndex += 1;
offsetX = leftMargin + columnIndex * (columnSpacing + columnWidth);
offsetY = columnHeaderOffsetY;
calculator.getColumnNumber().setValue(
new Integer(((Number)calculator.getColumnNumber().getValue()).intValue() + 1)
);
calculator.getColumnNumber().setOldValue(
calculator.getColumnNumber().getValue()
);
fillColumnHeader(evalNextPage);
}
}
/** |
protected void |
JRVerticalFiller.fillPageBand(JRFillBand band,
byte evaluation)
|
static JREvaluationTime |
JREvaluationTime.getBandEvaluationTime(JRFillBand band)
Returns the evaluation time corresponding to
JRExpression.EVALUATION_TIME_BAND for a specific band. |
static JREvaluationTime |
JREvaluationTime.getEvaluationTime(byte type,
JRGroup group,
JRFillBand band)
Returns the evaluation time corresponding to an evaluation time type. |
protected void |
JRBaseFiller.resolveBandBoundElements(JRFillBand band,
byte evaluation)
Resloves elements which are to be evaluated at band level. |
protected void |
JRFillElement.setBand(JRFillBand band)
|