Lines Matching refs:attrs

198     private boolean isSectionPagebreakAfter(final AttributeMap attrs)  in isSectionPagebreakAfter()  argument
201 attrs.getAttribute(OfficeNamespaces.OOREPORT_NS, "force-new-page"); in isSectionPagebreakAfter()
205 private boolean isSectionPagebreakBefore(final AttributeMap attrs) in isSectionPagebreakBefore() argument
208 attrs.getAttribute(OfficeNamespaces.OOREPORT_NS, "force-new-page"); in isSectionPagebreakBefore()
359 final AttributeList attrs = new AttributeList(); in applyColumnsToPageBand() local
360attrs.setAttribute(OfficeNamespaces.TEXT_NS, OfficeToken.STYLE_NAME, generateSectionStyle(numberOf… in applyColumnsToPageBand()
361 attrs.setAttribute(OfficeNamespaces.TEXT_NS, NAME, sectionNames.generateName("Section")); in applyColumnsToPageBand()
362 writer.writeTag(OfficeNamespaces.TEXT_NS, "section", attrs, XmlWriterSupport.OPEN); in applyColumnsToPageBand()
514 protected void startContent(final AttributeMap attrs) in startContent() argument
526 final Object columnCountRaw = attrs.getAttribute(OfficeNamespaces.FO_NS, "column-count"); in startContent()
536 protected void startOther(final AttributeMap attrs) in startOther() argument
539 final String namespace = ReportTargetUtil.getNamespaceFromAttribute(attrs); in startOther()
540 final String elementType = ReportTargetUtil.getElemenTypeFromAttribute(attrs); in startOther()
546 startImageProcessing(attrs); in startOther()
550 startChartProcessing(attrs); in startOther()
573 startTable(attrs); in startOther()
579 startRow(attrs); in startOther()
590 … final String varName = (String) attrs.getAttribute(OfficeNamespaces.TEXT_NS, NAME); in startOther()
591 …final String varType = (String) attrs.getAttribute(OfficeNamespaces.OFFICE_NS, FormatValueUtility.… in startOther()
593 attrs.setAttribute(OfficeNamespaces.TEXT_NS, NAME, newVarName); in startOther()
597 … final String varName = (String) attrs.getAttribute(OfficeNamespaces.TEXT_NS, NAME); in startOther()
598 …final String varType = (String) attrs.getAttribute(OfficeNamespaces.OFFICE_NS, FormatValueUtility.… in startOther()
600 attrs.setAttribute(OfficeNamespaces.TEXT_NS, NAME, newVarName); in startOther()
627 … if (ReportTargetUtil.isElementOfType(OfficeNamespaces.TEXT_NS, OfficeToken.P, attrs)) in startOther()
633 …final String styleName = (String) attrs.getAttribute(OfficeNamespaces.TEXT_NS, OfficeToken.STYLE_N… in startOther()
681attrs.setAttribute(OfficeNamespaces.TEXT_NS, OfficeToken.STYLE_NAME, style.getStyleName()); in startOther()
688 …final String styleName = (String) attrs.getAttribute(OfficeNamespaces.DRAWING_NS, OfficeToken.STYL… in startOther()
706 performStyleProcessing(attrs); in startOther()
708 final AttributeList attrList = buildAttributeList(attrs); in startOther()
714 … && ReportTargetUtil.isElementOfType(OfficeNamespaces.TEXT_NS, OfficeToken.P, attrs)) in startOther()
723 private void startRow(final AttributeMap attrs) in startRow() argument
728 …final String rowStyle = (String) attrs.getAttribute(OfficeNamespaces.TABLE_NS, OfficeToken.STYLE_N… in startRow()
745 performStyleProcessing(attrs); in startRow()
747 final AttributeList attrList = buildAttributeList(attrs); in startRow()
751 private void startTable(final AttributeMap attrs) in startTable() argument
754 …final Integer trc = (Integer) attrs.getAttribute(JFreeReportInfo.REPORT_NAMESPACE, "table-row-coun… in startTable()
764 if (isSectionPagebreakBefore(attrs)) in startTable()
793 if (masterPageName == null && isSectionPagebreakBefore(attrs)) in startTable()
830 if (masterPageName == null || isSectionPagebreakBefore(attrs)) in startTable()
905 …final boolean localKeepTogether = OfficeToken.TRUE.equals(attrs.getAttribute(OfficeNamespaces.OORE… in startTable()
912 …final String styleName = (String) attrs.getAttribute(OfficeNamespaces.TABLE_NS, OfficeToken.STYLE_… in startTable()
971attrs.setAttribute(OfficeNamespaces.TABLE_NS, OfficeToken.STYLE_NAME, style.getStyleName()); in startTable()
989 …final String styleName = (String) attrs.getAttribute(OfficeNamespaces.TABLE_NS, OfficeToken.STYLE_… in startTable()
995 …final String hasGroupFooter = (String) attrs.getAttribute(JFreeReportInfo.REPORT_NAMESPACE, "has-g… in startTable()
1001attrs.setAttribute(OfficeNamespaces.TABLE_NS, OfficeToken.STYLE_NAME, style.getStyleName()); in startTable()
1012 performStyleProcessing(attrs); in startTable()
1015 final String namespace = ReportTargetUtil.getNamespaceFromAttribute(attrs); in startTable()
1016 final String elementType = ReportTargetUtil.getElemenTypeFromAttribute(attrs); in startTable()
1017 final AttributeList attrList = buildAttributeList(attrs); in startTable()
1059 final AttributeList attrs = new AttributeList(); in openSection() local
1060attrs.setAttribute(OfficeNamespaces.TEXT_NS, OfficeToken.STYLE_NAME, generateSectionStyle(columnCo… in openSection()
1061attrs.setAttribute(OfficeNamespaces.TEXT_NS, NAME, sectionNames.generateName("Section")); in openSection()
1062 … getXmlWriter().writeTag(OfficeNamespaces.TEXT_NS, "section", attrs, XmlWriterSupport.OPEN); in openSection()
1069 protected void startReportSection(final AttributeMap attrs, final int role) in startReportSection() argument
1081 pageHeaderOnReportHeader = PageSection.isPrintWithReportHeader(attrs); in startReportSection()
1082 pageHeaderOnReportFooter = PageSection.isPrintWithReportFooter(attrs); in startReportSection()
1087 pageFooterOnReportHeader = PageSection.isPrintWithReportHeader(attrs); in startReportSection()
1088 pageFooterOnReportFooter = PageSection.isPrintWithReportFooter(attrs); in startReportSection()
1118 protected void startGroup(final AttributeMap attrs) in startGroup() argument
1121 super.startGroup(attrs); in startGroup()
1125 …final Object resetPageNumber = attrs.getAttribute(OfficeNamespaces.OOREPORT_NS, "reset-page-number… in startGroup()
1131 final Object keepTogether = attrs.getAttribute(OfficeNamespaces.OOREPORT_NS, KEEP_TOGETHER); in startGroup()
1141 final Object columnCountRaw = attrs.getAttribute(OfficeNamespaces.FO_NS, "column-count"); in startGroup()
1148 … final Object newColumn = attrs.getAttribute(OfficeNamespaces.OOREPORT_NS, "start-new-column"); in startGroup()
1155 protected void startGroupInstance(final AttributeMap attrs) in startGroupInstance() argument
1164 protected void endGroup(final AttributeMap attrs) in endGroup() argument
1172 super.endGroup(attrs); in endGroup()
1196 protected void endReportSection(final AttributeMap attrs, final int role) in endReportSection() argument
1241 …final boolean repeat = OfficeToken.TRUE.equals(attrs.getAttribute(OfficeNamespaces.OOREPORT_NS, "r… in endReportSection()
1299 protected void endOther(final AttributeMap attrs) in endOther() argument
1302 final String namespace = ReportTargetUtil.getNamespaceFromAttribute(attrs); in endOther()
1303 final String elementType = ReportTargetUtil.getElemenTypeFromAttribute(attrs); in endOther()
1394 if (isSectionPagebreakAfter(attrs)) in endOther()
1405 protected void endGroupBody(final AttributeMap attrs) in endGroupBody() argument
1418 protected void endContent(final AttributeMap attrs) in endContent() argument