| java.lang.Object net.sf.jasperreports.engine.fill.JRBaseFiller net.sf.jasperreports.engine.fill.JRHorizontalFiller
JRHorizontalFiller | public class JRHorizontalFiller extends JRBaseFiller (Code) | | author: Teodor Danciu (teodord@users.sourceforge.net) version: $Id: JRHorizontalFiller.java 1797 2007-07-30 09:38:35Z teodord $ |
fillPageBand | protected void fillPageBand(JRFillBand band, byte evaluation) throws JRException(Code) | | 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);
}
}
/**
|
setPageHeight | protected void setPageHeight(int pageHeight)(Code) | | |
Methods inherited from net.sf.jasperreports.engine.fill.JRBaseFiller | protected void addBoundElement(JRFillElement element, JRPrintElement printElement, byte evaluationType, JRGroup group, JRFillBand band)(Code)(Java Doc) protected void addBoundElement(JRFillElement element, JRPrintElement printElement, JREvaluationTime evaluationTime)(Code)(Java Doc) protected void addDefaultStyleListener(DefaultStyleListener listener)(Code)(Java Doc) protected void addPage(JRPrintPage page)(Code)(Java Doc) protected void addPageIdentityDataProvider()(Code)(Java Doc) protected void addVariableCalculationReq(String variableName, byte calculation)(Code)(Java Doc) public void cancelFill() throws JRException(Code)(Java Doc) protected void collectIncludedTemplates(JRTemplate template, List externalStyles, Set loadedLocations) throws JRException(Code)(Java Doc) protected List collectStyles() throws JRException(Code)(Java Doc) protected void collectStyles(JRTemplate template, List externalStyles, Set loadedLocations) throws JRException(Code)(Java Doc) protected List collectTemplateStyles() throws JRException(Code)(Java Doc) protected void createReportTemplates(JRFillObjectFactory factory)(Code)(Java Doc) protected Object evaluateExpression(JRExpression expression, byte evaluation) throws JRException(Code)(Java Doc) public JasperPrint fill(Map parameterValues, Connection conn) throws JRException(Code)(Java Doc) public JasperPrint fill(Map parameterValues, JRDataSource ds) throws JRException(Code)(Java Doc) public JasperPrint fill(Map parameterValues) throws JRException(Code)(Java Doc) abstract protected void fillReport() throws JRException(Code)(Java Doc) protected JRPrintPage getCurrentPage()(Code)(Java Doc) protected int getCurrentPageStretchHeight()(Code)(Java Doc) protected Format getDateFormat(String pattern)(Code)(Java Doc) public JRReportFont getDefaultFont()(Code)(Java Doc) public JRStyle getDefaultStyle()(Code)(Java Doc) protected JRFillField getField(String fieldName)(Code)(Java Doc) protected Map getFieldsMap()(Code)(Java Doc) protected JRReportFont[] getFonts()(Code)(Java Doc) protected FormatFactory getFormatFactory()(Code)(Java Doc) public JRVirtualPrintPage.ObjectIDPair[] getIdentityData(JRVirtualPrintPage page)(Code)(Java Doc) public JasperPrint getJasperPrint()(Code)(Java Doc) protected JasperReport getJasperReport()(Code)(Java Doc) protected Locale getLocale()(Code)(Java Doc) public JRFillDataset getMainDataset()(Code)(Java Doc) protected int getMasterColumnCount()(Code)(Java Doc) protected Format getNumberFormat(String pattern)(Code)(Java Doc) protected Map getParametersMap()(Code)(Java Doc) public JRStyledTextParser getStyledTextParser()(Code)(Java Doc) protected TimeZone getTimeZone()(Code)(Java Doc) protected JRFillVariable getVariable(String variableName)(Code)(Java Doc) public Object getVariableValue(String variableName)(Code)(Java Doc) protected Map getVariablesMap()(Code)(Java Doc) protected byte getWhenResourceMissingType()(Code)(Java Doc) protected boolean hasMasterFormatFactory()(Code)(Java Doc) protected boolean hasMasterLocale()(Code)(Java Doc) protected boolean hasMasterTimeZone()(Code)(Java Doc) protected boolean isBandOverFlowAllowed()(Code)(Java Doc) protected boolean isInterrupted()(Code)(Java Doc) protected boolean isSubreport()(Code)(Java Doc) protected void loadStyles() throws JRException(Code)(Java Doc) protected void lookupExternalDefaultStyle(Collection styleList)(Code)(Java Doc) protected JRPrintPage newPage()(Code)(Java Doc) protected boolean next() throws JRException(Code)(Java Doc) protected void registerSubfiller(JRBaseFiller subfiller)(Code)(Java Doc) protected void removePageIdentityDataProvider()(Code)(Java Doc) protected void resolveBandBoundElements(JRFillBand band, byte evaluation) throws JRException(Code)(Java Doc) protected void resolveBoundElements(JREvaluationTime evaluationTime, byte evaluation) throws JRException(Code)(Java Doc) protected void resolveColumnBoundElements(byte evaluation) throws JRException(Code)(Java Doc) protected void resolveGroupBoundElements(byte evaluation, boolean isFinal) throws JRException(Code)(Java Doc) protected void resolvePageBoundElements(byte evaluation) throws JRException(Code)(Java Doc) protected void resolveReportBoundElements() throws JRException(Code)(Java Doc) protected void setBandOverFlowAllowed(boolean splittableBand)(Code)(Java Doc) protected void setConnectionParameterValue(Map parameterValues, Connection conn)(Code)(Java Doc) protected void setDatasourceParameterValue(Map parameterValues, JRDataSource ds)(Code)(Java Doc) protected void setDefaultStyle(JRStyle style)(Code)(Java Doc) public void setIdentityData(JRVirtualPrintPage page, JRVirtualPrintPage.ObjectIDPair[] identityData)(Code)(Java Doc) protected void setInterrupted(boolean isInterrupted)(Code)(Java Doc) abstract protected void setPageHeight(int pageHeight)(Code)(Java Doc) protected void setParameter(String parameterName, Object value) throws JRException(Code)(Java Doc) protected void setParameter(JRFillParameter parameter, Object value) throws JRException(Code)(Java Doc) protected void setParameters(Map parameterValues) throws JRException(Code)(Java Doc) protected void setSubreportRunner(JRSubreportRunner runner)(Code)(Java Doc) protected void suspendSubreportRunner() throws JRException(Code)(Java Doc) protected void unregisterSubfiller(JRBaseFiller subfiller)(Code)(Java Doc)
|
|
|