Home
last modified time | relevance | path

Searched refs:OfficeToken (Results 1 – 25 of 31) sorted by relevance

12

/aoo4110/main/reportbuilder/java/com/sun/star/report/pentaho/output/spreadsheet/
H A DSpreadsheetRawReportTarget.java28 import com.sun.star.report.OfficeToken;
218 if (OfficeNamespaces.DRAWING_NS.equals(namespace) && OfficeToken.FRAME.equals(elementType)) in startOther()
254 if (OfficeNamespaces.TABLE_NS.equals(namespace) && OfficeToken.TABLE.equals(elementType)) in startOther()
326 if (ReportTargetUtil.isElementOfType(OfficeNamespaces.TABLE_NS, OfficeToken.TABLE, attrs)) in processElement()
339 "table-properties", OfficeNamespaces.FO_NS, OfficeToken.BACKGROUND_COLOR); in processElement()
352 …ceNamespaces.TABLE_NS, OfficeToken.TABLE_COLUMN, attrs) || ReportTargetUtil.isElementOfType(Office… in processElement()
389 final OfficeStyle style = deriveStyle(OfficeToken.TABLE_ROW, styleName); in processElement()
443 attrs.setAttribute(OfficeNamespaces.TABLE_NS, OfficeToken.STYLE_NAME, styleName); in processElement()
671OfficeToken.TABLE.equals(elementType) || OfficeToken.COVERED_TABLE_CELL.equals(elementType) || Off… in endOther()
775 if (!commonStyles.containsStyle(OfficeToken.TABLE, "Initial_Table")) in generateInitialTableStyle()
[all …]
/aoo4110/main/reportbuilder/java/com/sun/star/report/pentaho/output/text/
H A DTextRawReportTarget.java29 import com.sun.star.report.OfficeToken;
612 StyleUtilities.copyStyle(OfficeToken.PARAGRAPH, in startOther()
616 xmlWriter.writeTag(OfficeNamespaces.TEXT_NS, OfficeToken.P, OfficeToken.STYLE_NAME, in startOther()
872 …xmlWriter.writeTag(OfficeNamespaces.TEXT_NS, OfficeToken.P, OfficeToken.STYLE_NAME, style.getStyle… in startTable()
885 …xmlWriter.writeTag(OfficeNamespaces.TEXT_NS, OfficeToken.P, OfficeToken.STYLE_NAME, style.getStyle… in startTable()
896 xmlWriter.writeTag(OfficeNamespaces.TEXT_NS, OfficeToken.P, OfficeToken.STYLE_NAME, in startTable()
1126 if (OfficeToken.TRUE.equals(resetPageNumber)) in startGroup()
1149 if (OfficeToken.TRUE.equals(newColumn)) in startGroup()
1283 xmlWriter.writeText(OfficeToken.TRUE); in endReport()
1313 …f (isInternalNS && (ObjectUtilities.equal(OfficeToken.IMAGE, elementType) || ObjectUtilities.equal… in endOther()
[all …]
/aoo4110/main/reportbuilder/java/com/sun/star/report/pentaho/model/
H A DImageElement.java25 import com.sun.star.report.OfficeToken;
57 String val = (String) getAttribute(OfficeNamespaces.OOREPORT_NS, OfficeToken.SCALE); in getScaleMode()
58 if (OfficeToken.TRUE.equals(val)) in getScaleMode()
60 val = OfficeToken.ANISOTROPIC; in getScaleMode()
62 else if (OfficeToken.FALSE.equals(val) || val == null) in getScaleMode()
64 val = OfficeToken.NONE; in getScaleMode()
71 …return OfficeToken.TRUE.equals(getAttribute(OfficeNamespaces.OOREPORT_NS, OfficeToken.PRESERVE_IRI… in isPreserveIRI()
76 … setAttribute(OfficeNamespaces.OOREPORT_NS, OfficeToken.PRESERVE_IRI, String.valueOf(preserveIRI)); in setPreserveIRI()
81 return (String) getAttribute(OfficeNamespaces.FORM_NS, OfficeToken.IMAGE_DATA); in getImageData()
H A DReportElement.java25 import com.sun.star.report.OfficeToken;
60 …return OfficeToken.TRUE.equals(getAttribute(OfficeNamespaces.OOREPORT_NS, "print-when-group-change… in isPrintWhenGroupChanges()
78 …return OfficeToken.TRUE.equals(getAttribute(OfficeNamespaces.OOREPORT_NS, "print-repeated-values")… in isPrintRepeatedValues()
H A DOfficeGroup.java25 import com.sun.star.report.OfficeToken;
48 … return OfficeToken.TRUE.equals(getAttribute(OfficeNamespaces.OOREPORT_NS, "start-new-column")); in isStartNewColumn()
53 … return OfficeToken.TRUE.equals(getAttribute(OfficeNamespaces.OOREPORT_NS, "reset-page-number")); in isResetPageNumber()
H A DOfficeGroupSection.java25 import com.sun.star.report.OfficeToken;
48 return OfficeToken.TRUE.equals(repeatFlag); in isRepeatSection()
H A DOfficeStyle.java25 import com.sun.star.report.OfficeToken;
124 return findFirstChild(OfficeNamespaces.STYLE_NS, OfficeToken.GRAPHIC_PROPERTIES); in getGraphicProperties()
/aoo4110/main/reportbuilder/java/com/sun/star/report/pentaho/output/
H A DOfficeDocumentReportTarget.java28 import com.sun.star.report.OfficeToken;
407 if (!commonStyles.containsStyle(OfficeToken.GRAPHIC, OfficeToken.GRAPHICS)) in startReport()
410 graphicsDefaultStyle.setStyleFamily(OfficeToken.GRAPHIC); in startReport()
411 graphicsDefaultStyle.setStyleName(OfficeToken.GRAPHICS); in startReport()
820 if (OfficeToken.TRUE.equals(repeatingHeaderOrFooter)) in startGroup()
1315 …final boolean preserveIRI = OfficeToken.TRUE.equals(attrs.getAttribute(JFreeReportInfo.REPORT_NAME… in startImageProcessing()
1365 … final OfficeStyle imageStyle = deriveStyle(OfficeToken.GRAPHIC, OfficeToken.GRAPHICS); in startImageProcessing()
1388 … final OfficeStyle imageStyle = deriveStyle(OfficeToken.GRAPHIC, OfficeToken.GRAPHICS); in startImageProcessing()
1406 … final OfficeStyle imageStyle = deriveStyle(OfficeToken.GRAPHIC, OfficeToken.GRAPHICS); in startImageProcessing()
1428 else if (OfficeToken.ISOTROPIC.equals(scale)) in startImageProcessing()
[all …]
/aoo4110/main/reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/
H A DImageElementLayoutController.java25 import com.sun.star.report.OfficeToken;
109 … image.setAttribute(JFreeReportInfo.REPORT_NAMESPACE, Element.TYPE_ATTRIBUTE, OfficeToken.IMAGE); in generateImage()
110 image.setAttribute(JFreeReportInfo.REPORT_NAMESPACE, OfficeToken.SCALE, scale); in generateImage()
111 …image.setAttribute(JFreeReportInfo.REPORT_NAMESPACE, OfficeToken.PRESERVE_IRI, String.valueOf(pres… in generateImage()
113 image.setAttribute(JFreeReportInfo.REPORT_NAMESPACE, OfficeToken.IMAGE_DATA, linkTarget); in generateImage()
149 … final int columnPos = findNodeInSection(tableRow, tableCell, OfficeToken.COVERED_TABLE_CELL); in createContext()
165 …ion columns = (Section) table.findFirstChild(OfficeNamespaces.TABLE_NS, OfficeToken.TABLE_COLUMNS); in createContext()
275 …, OfficeNamespaces.TABLE_NS) || !ObjectUtilities.equal(column.getType(), OfficeToken.TABLE_COLUMN)) in addColumnStyles()
281 … String colStyle = (String) column.getAttribute(OfficeNamespaces.TABLE_NS, OfficeToken.STYLE_NAME); in addColumnStyles()
303 …pace(), OfficeNamespaces.TABLE_NS) || !ObjectUtilities.equal(row.getType(), OfficeToken.TABLE_ROW)) in addRowStyles()
[all …]
H A DFormatValueUtility.java25 import com.sun.star.report.OfficeToken;
96 … variableSection.setAttribute(OfficeNamespaces.OFFICE_NS, BOOLEAN_VALUE, OfficeToken.TRUE); in applyValueForVariable()
100 … variableSection.setAttribute(OfficeNamespaces.OFFICE_NS, BOOLEAN_VALUE, OfficeToken.FALSE); in applyValueForVariable()
164 … variableSection.setAttribute(OfficeNamespaces.OFFICE_NS, BOOLEAN_VALUE, OfficeToken.TRUE); in applyValueForCell()
168 … variableSection.setAttribute(OfficeNamespaces.OFFICE_NS, BOOLEAN_VALUE, OfficeToken.FALSE); in applyValueForCell()
H A DTableCellLayoutController.java25 import com.sun.star.report.OfficeToken;
67 …finedStyle = (String) attributeMap.getAttribute(OfficeNamespaces.TABLE_NS, OfficeToken.STYLE_NAME); in computeAttributes()
68 …attributeMap.setAttribute(OfficeNamespaces.TABLE_NS, OfficeToken.STYLE_NAME, getDisplayStyleName((… in computeAttributes()
H A DOfficeTableLayoutController.java25 import com.sun.star.report.OfficeToken;
64 …if (OfficeNamespaces.TABLE_NS.equals(child.getNamespace()) && OfficeToken.TABLE_ROW.equals(child.g… in computeAttributes()
H A DOfficeGroupSectionLayoutController.java25 import com.sun.star.report.OfficeToken;
101 retval.setAttribute(JFreeReportInfo.REPORT_NAMESPACE, "repeated-section", OfficeToken.TRUE); in computeAttributes()
/aoo4110/main/reportbuilder/java/com/sun/star/report/pentaho/parser/table/
H A DTableReadHandler.java25 import com.sun.star.report.OfficeToken;
71 if (enabled == null || OfficeToken.TRUE.equals(enabled)) in startParsing()
101 … if (OfficeToken.TABLE_COLUMNS.equals(tagName) || OfficeToken.TABLE_HEADER_COLUMNS.equals(tagName)) in getHandlerForChild()
107 else if (OfficeToken.TABLE_ROW.equals(tagName)) in getHandlerForChild()
113 … else if (OfficeToken.TABLE_ROWS.equals(tagName) || OfficeToken.TABLE_HEADER_ROWS.equals(tagName)) in getHandlerForChild()
H A DTableRowReadHandler.java25 import com.sun.star.report.OfficeToken;
74 if (OfficeToken.TABLE_CELL.equals(tagName)) in getHandlerForChild()
78 else if (OfficeToken.COVERED_TABLE_CELL.equals(tagName)) in getHandlerForChild()
H A DTableColumnsReadHandler.java25 import com.sun.star.report.OfficeToken;
71 if (OfficeNamespaces.TABLE_NS.equals(uri) && OfficeToken.TABLE_COLUMN.equals(tagName)) in getHandlerForChild()
H A DTableRowsReadHandler.java25 import com.sun.star.report.OfficeToken;
70 if (OfficeNamespaces.TABLE_NS.equals(uri) && OfficeToken.TABLE_ROW.equals(tagName)) in getHandlerForChild()
/aoo4110/main/reportbuilder/java/com/sun/star/report/pentaho/output/chart/
H A DChartRawReportTarget.java28 import com.sun.star.report.OfficeToken;
144 …return OfficeToken.TABLE_HEADER_COLUMNS.equals(elementType) || OfficeToken.TABLE_HEADER_ROWS.equal… in isFiltered()
160 … if (OfficeToken.TABLE.equals(elementType) || OfficeToken.TABLE_ROWS.equals(elementType)) in endOther()
205 if (OfficeToken.TABLE.equals(elementType)) in processElement()
213 else if (OfficeToken.TABLE_ROWS.equals(elementType)) in processElement()
/aoo4110/main/reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/
H A DFormatConditionReadHandler.java25 import com.sun.star.report.OfficeToken;
69 attrs.getValue(OfficeNamespaces.OOREPORT_NS, OfficeToken.STYLE_NAME); in startParsing()
78 final boolean enabled = (enabledText == null || OfficeToken.TRUE.equals(enabledText)); in startParsing()
H A DReportElementReadHandler.java25 import com.sun.star.report.OfficeToken;
69 element.setPrintWhenGroupChanges(OfficeToken.TRUE.equals(printWhenGroupChanges)); in startParsing()
71 …element.setPrintRepeatedValues(printRepeatingValues == null || OfficeToken.TRUE.equals(printRepeat… in startParsing()
H A DFunctionReadHandler.java25 import com.sun.star.report.OfficeToken;
91 expression.setDeepTraversing(OfficeToken.TRUE.equals(deepTraversing)); in startParsing()
93 expression.setPrecompute(OfficeToken.TRUE.equals(preEvaluated)); in startParsing()
H A DImageReadHandler.java25 import com.sun.star.report.OfficeToken;
78 contentElement.setType(OfficeToken.IMAGE); in startParsing()
94 if (OfficeNamespaces.DRAWING_NS.equals(uri) && OfficeToken.IMAGE_DATA.equals(tagName)) in getHandlerForChild()
H A DFixedContentReadHandler.java25 import com.sun.star.report.OfficeToken;
67 if (OfficeNamespaces.TEXT_NS.equals(uri) && OfficeToken.P.equals(tagName)) in getHandlerForChild()
H A DSubDocumentReadHandler.java25 import com.sun.star.report.OfficeToken;
113 if (OfficeToken.OBJECT_OLE.equals(tagName)) in getHandlerForChild()
/aoo4110/main/reportbuilder/java/com/sun/star/report/pentaho/parser/text/
H A DNoCDATATextContentReadHandler.java27 import com.sun.star.report.OfficeToken;
123 if (OfficeToken.IMAGE.equals(tagName)) in getHandlerForChild()
139 if (OfficeToken.IMAGE.equals(tagName)) in getHandlerForChild()

Completed in 71 milliseconds

12