com.vladsch.flexmark.util.format.TableCellConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark-util-format Show documentation
Show all versions of flexmark-util-format Show documentation
flexmark-java format utility classes
The newest version!
package com.vladsch.flexmark.util.format;
public interface TableCellConsumer {
/**
* loop over table row cells
*
* @param cell cell
* @param cellIndex cell's index in row cells
* @param cellColumn cell's starting column (if previous cells had column spans not same as cell
* index)
*/
void accept(TableCell cell, int cellIndex, int cellColumn);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy