モデル オブジェクトに格納されている RGB 値に基づいて、NatTable の行の色を変更しようとしています。NatTable でカスタム スタイルを設定する方法に関する情報を見つけましたが、これらはすべて、動的な値に基づくものではなく、定義済みのラベルを使用しているようです。
//add custom cell label to cells that contain value AAA in column 2
CellOverrideLabelAccumulator cellLabelAccumulator
= new CellOverrideLabelAccumulator(gridLayer.getBodyDataProvider());
cellLabelAccumulator.registerOverride("AAA", 2, CELL_LABEL);
// Register label accumulator with the data layer
bodyDataLayer.setConfigLabelAccumulator(cellLabelAccumulator);
CELL_LABEL は、事前に作成されたラベルにリンクする文字列です。