Interface IWemListenerTable

    • Method Detail

      • beginTable

        void beginTable​(WikiParameters params)
        This method notifies about the beginning of a new table in the document.
        Parameters:
        params - table parameters
        See Also:
        endTable(WikiParameters)
      • beginTableCell

        void beginTableCell​(boolean tableHead,
                            WikiParameters params)
        This method is used to notify about the beginning of a new table cell.
        Parameters:
        tableHead - if this flag is true then the reported cell corresponds to the table head ("th" element); otherwise it should be considered as a normal table cell ("td" element).
        params - parameters of this cell
        See Also:
        endTableCell(boolean, WikiParameters)
      • beginTableRow

        void beginTableRow​(WikiParameters params)
        This method is used to notify about the beginning of a new table row.
        Parameters:
        params - parameters of the row.
        See Also:
        endTableRow(WikiParameters)
      • endTableCell

        void endTableCell​(boolean tableHead,
                          WikiParameters params)
        This method is used to notify about the end of a table cell.
        Parameters:
        tableHead - if this flag is true then the reported cell corresponds to the table head ("th" element); otherwise it should be considered as a normal table cell ("td" element).
        params - parameters of this cell
        See Also:
        beginTableCell(boolean, WikiParameters)
      • onTableCaption

        void onTableCaption​(String str)
        Notifies the table caption.
        Parameters:
        str - the content of the table caption