コードで BalloonTip を使用していますが、次のコンストラクターが必要です。
public TablecellBalloonTip(JTable table, JComponent component, int row, int column, BalloonTipStyle style, Orientation alignment, AttachLocation attachLocation, int horizontalOffset, int verticalOffset, boolean useCloseButton) {
super(table, component, table.getCellRect(row, column, true), style, alignment, attachLocation, horizontalOffset, verticalOffset, useCloseButton);
setup(table, row, column);
}
古いバージョンでは、2 番目のパラメーターは文字列で、機能していましたが、機能しなくなりました。その場合、JComponent に String が必要ですが、その方法がわかりません。