TableOrTreeSWT table = row.getTable();
if (table == null || table.isDisposed()) {
return false;
}
Point pt = table.getDisplay().getCursorLocation();
pt = table.toControl(pt);
Rectangle bounds = getBounds();
return bounds == null ? false : bounds.contains(pt);
}