Configuring a Table Cell Row and Column Separator Provider
In a custom framework, the table element has separators between rows. As
               explained in Configuring Tables, you need to indicate a method to determine the way rows and columns are separated.
               If
               you use the rowsep and colsep cell element attributes, or
               your table is conforming to the CALS table model, Oxygen XML Author plugin can determine the
               cell separators. Even if there are no attributes that define the separators, you can
               still
               force a separator between rows by implementing a Java extension.
            
- Create the class
                  simple.documentation.framework.TableCellSepProvider. This class must implement thero.sync.ecss.extensions.api.AuthorTableCellSepProviderinterface.import ro.sync.ecss.extensions.api.AuthorTableCellSepProvider; import ro.sync.ecss.extensions.api.node.AuthorElement; public class TableCellSepProvider implements AuthorTableCellSepProvider{
- The initmethod is taking as argument thero.sync.ecss.extensions.api.node.AuthorElementthat represents the XMLtableelement. In our case the separator information is implicit, it does not depend on the current table, so you leave this method empty. However, there are cases (such as the CALS table model) when the cell separators are specified in thetableelement. In such cases, you should initialize your provider based on the given argument.public void init(AuthorElement table) { }
- The getColSepmethod is taking as argument the table cell. The table layout engine will ask thisAuthorTableCellSepProviderimplementation if there is a column separator for each XML element from the table that was marked as cell in the CSS using the propertydisplay:table-cell. In our case we choose to return false since we do not need column separators./** * @return false - No column separator at the right of the cell. */ @Override public boolean getColSep(AuthorElement cellElement, int columnIndex) { return false; }
- The row separators are determined in a similar manner. This time the method returns
                  true, forcing a separator between the rows./** * @return true - A row separator below each cell. */ @Override public boolean getRowSep(AuthorElement cellElement, int columnIndex) { return true; }NoteThe complete source code for the examples can be found in the Simple Documentation Framework project, included in the oxygen-sample-framework module of the Oxygen SDK , available as a Maven archetype on the Oxygen XML Author plugin website.
- In the example below, the XML document contains the table element:<table> <header> <td>H1</td> <td>H2</td> <td>H3</td> <td>H4</td> </header> <tr> <td>C11</td> <td>C12</td> <td>C13</td> <td>C14</td> </tr> <tr> <td>C21</td> <td>C22</td> <td>C23</td> <td>C24</td> </tr> <tr> <td>C31</td> <td>C32</td> <td>C33</td> <td>C34</td> </tr> </table>
When the borders for the td element are removed from the CSS, the row
               separators become visible:
            
Row separators provided by the Java implementation.

