Hello,
I have a table which uses a table model, a subclass of AbstractMultiTableModel. I would want to set tool tips for these cells if the data is truncated.
I cannot add a mouse listener nor can I implement the CellRenderer as I won't have the method setToolTip in the context of the class in either case.
Also I cannot override the getToolTip(MouseEvent e) of JTable as I dont have a table and also that method would set the tooltip for a table but not for a particular cell.
Is there something available in the jide demos to implement this functionality? Or is there a way that I can implement this may be using AWT alone?