use of org.jdesktop.swingx.decorator.BorderHighlighter in project com.revolsys.open by revolsys.
the class BaseJTable method addLastRowBorderPredicate.
protected void addLastRowBorderPredicate() {
final HighlightPredicate lastPredicate = (final Component renderer, final ComponentAdapter adapter) -> {
final int row = adapter.row;
final int lastRowIndex = getRowCount() - 1;
return row == lastRowIndex;
};
addHighlighter(new BorderHighlighter(lastPredicate, BorderFactory.createMatteBorder(0, 0, 1, 0, new Color(191, 191, 191))));
}
Aggregations