41424344454647
JTree tree = (JTree) component; int rowIndex = tree.getRowForLocation(point.x, point.y); if (rowIndex < 0) { return DataTipCell.NONE; } return new TreeDataTipCell(tree, rowIndex); }