0
IConfigLabelAccumulator cellLabelAccumulator = new IConfigLabelAccumulator() {
@Override
public void accumulateConfigLabels(LabelStack configLabels, int columnPosition, int rowPosition) {
int rowIndex = bodyDataLayer.getRowIndexByPosition(rowPosition);
if (rowIndex == 2) {
configLabels.addLabel("FOO");
}
}
};
bodyDataLayer.setConfigLabelAccumulator(cellLabelAccumulator);
natTable.getConfigRegistry().registerConfigAttribute(CellConfigAttributes.GRID_LINE_COLOR, GUIHelper.COLOR_GREEN, DisplayMode.NORMAL, "FOO");
を試みたが、それがうまくいきませんでした。 これをどうすれば実現できますか?ありがとう!
あなたの問題は何ですか、詳細な説明質問に追加 –