return ((Boolean) adapter.getValue(modelColumn)).booleanValue();
}
};
// compound per-predicate and add as column highlighter to the factory
factory.addHighlighter("nomineesColumn", new CompoundHighlighter(
new CompoundHighlighter(winnerPredicate, winner, winnerToolTip),
new CompoundHighlighter(new NotHighlightPredicate(winnerPredicate),
nominee, nomineeToolTip)));
// </snip>
}