Class JRPdfExporterTagHelper

  • All Implemented Interfaces:
    StyledTextListWriter

    public class JRPdfExporterTagHelper
    extends java.lang.Object
    implements StyledTextListWriter
    Provides support for tagged PDF documents.

    PDF files can contain hidden tags that describe the structure of the document. Some of the tags are used by the automated reader tool that reads PDF documents aloud to people with disabilities.

    Marking Headings

    JasperReports currently supports specifying type 1, 2 and 3 level headings. In order to mark a text field as a level 1 heading, the following custom element property should be used in JRXML:

    <property name="net.sf.jasperreports.export.pdf.tag.h1" value="full"/>

    Value full means that a full <H1> tag will be embedded in the PDF wrapping the current text element. If two or more text fields make up a single level 1 heading, there are two ways to mark the heading:

    • In the first, the text elements making up the heading are placed inside a frame and the frame is marked with the following custom property:
      <property name="net.sf.jasperreports.export.pdf.tag.h1" value="full"/>
    • In the second, the first element of the heading (respective to the Z-Order, or the order in which the elements appear in JRXML) is tagged with:
      <property name="net.sf.jasperreports.export.pdf.tag.h1" value="start"/>
      and the last element from the heading (respective to the same order) is marked with
      <property name="net.sf.jasperreports.export.pdf.tag.h1" value="end"/>

    Level 2 and level 3 headings are marked the same way, except that the properties are:

    net.sf.jasperreports.export.pdf.tag.h2

    and

    net.sf.jasperreports.export.pdf.tag.h3.

    Marking Tables

    Tables are comprised of column headers, row headers, and a data section. Each table section is made of cells. Marking table structures in PDF is similar to the way tables are described in HTML and uses the same techniques as those for marking headings.

    When marking a table, the user has to indicate in the report template where the table starts and where it ends.

    If the entire table is placed in a container, such as a frame element, marking the table requires only marking the parent frame with the following custom element property:

    <property name="net.sf.jasperreports.export.pdf.tag.table" value="full"/>

    However, most of the time, tables cannot be isolated in a frame unless they are subreports, because they generally span multiple report sections and bands. In such cases, marking a table requires marking in JRXML the first and last element making up the table structure.

    The first element of the table (probably the first element in the table header) should be marked with the following custom property:

    <property name="net.sf.jasperreports.export.pdf.tag.table" value="start"/>

    The last element of the table should be marked with:

    <property name="net.sf.jasperreports.export.pdf.tag.table" value="end"/>

    Tables are made of rows, and each row has to be precisely delimited within the table structure. This includes the column header rows at the top of the table. Similar to the headings and table marking, a table row can be identified in two ways:

    • If the entire content that makes up the row is isolated within a frame, the frame can be marked with the following custom property:
      <property name="net.sf.jasperreports.export.pdf.tag.tr" value="full"/>
    • If the content of the row is not grouped in a container frame, its first and last elements (respective to the Z-order or the order in which they appear in JRXML) have to be marked with the following custom properties:
      <property name="net.sf.jasperreports.export.pdf.tag.tr" value="start"/>
      for the first element and
      <property name="net.sf.jasperreports.export.pdf.tag.tr" value="start"/>
      for the last element.

    Each table row can contain header cells or data cells. Regardless of their type, and similar to headings, tables, and table rows, cells can be marked either by marking a single element representing the cell content (this single cell element can actually be a frame element), or by marking the first and last element from the cell content.

    Header cells made of a single element (this single element can actually be a frame) are marked with

    <property name="net.sf.jasperreports.export.pdf.tag.th" value="full"/>

    A header cell made of multiple elements is marked with

    <property name="net.sf.jasperreports.export.pdf.tag.th" value="start"/> on its first element and

    <property name="net.sf.jasperreports.export.pdf.tag.th" value="end"/> on its last element.

    Normal data cells made of a single element (that can be frame) are marked with

    <property name="net.sf.jasperreports.export.pdf.tag.td" value="full"/>

    Normal data cells made of multiple elements are marked with

    <property name="net.sf.jasperreports.export.pdf.tag.td" value="start"/> on their first element and

    <property name="net.sf.jasperreports.export.pdf.tag.td" value="end"/> on their last element.

    Just as in HTML tables, cells can span multiple rows and/or columns. Column span and row span values for the current table cell can be specified using the following custom properties on the same element where the cell start was marked (the element with the full or start property marking the cell):

    <property name="net.sf.jasperreports.export.pdf.tag.colspan" value="<number>"/>

    <property name="net.sf.jasperreports.export.pdf.tag.rowspan" value="<number>"/>

    PDF Content Reading Order

    JasperReports uses the Z-order of the elements as present in the report template (JRXML) to control reading order in the resulting PDF files. This is usually the intended way for the documents to be read, so no specific modifications were required in order to achieve it.
    Author:
    Teodor Danciu (teodord@users.sourceforge.net)