* <code>event</code> is null
*/
public String getToolTipText(MouseEvent e) {
if (e != null) {
Object cell = getFirstCellForLocation(e.getX(), e.getY());
CellView view = getGraphLayoutCache().getMapping(cell, false);
if (view != null) {
Component c = view.getRendererComponent(this, false, false,
false);
if (c instanceof JComponent) {
Rectangle2D rect = getCellBounds(cell);
Point2D where = fromScreen(e.getPoint());
// Pass the event to the renderer in graph coordinates;