(Point point)
| 921 | } |
| 922 | |
| 923 | @Override |
| 924 | public int rowAtPoint(Point point) { |
| 925 | //The Swing implementation is very keen to drop the rowModel. We KNOW we |
| 926 | //should always have a row model, so if null, create it! |
| 927 | if(!componentSizedProperly){ |
| 928 | calculatePreferredSize(); |
| 929 | } |
| 930 | return super.rowAtPoint(point); |
| 931 | } |
| 932 | |
| 933 | /** |
| 934 | * Overridden for efficiency reasons (provides a better calculation of the |
no test coverage detected