(int x, int y)
| 2205 | |
| 2206 | /// {@inheritDoc} |
| 2207 | @Override |
| 2208 | protected boolean isTactileTouch(int x, int y) { |
| 2209 | // provide touch feedback only when pressing an entry in the list and not for the entire list |
| 2210 | if (isTactileTouch()) { |
| 2211 | int selection = pointerSelect(x, y); |
| 2212 | return selection > -1; |
| 2213 | } |
| 2214 | return false; |
| 2215 | } |
| 2216 | |
| 2217 | /// This flag indicates to the List if the List should scroll to the selected |
| 2218 | /// element when it's been initialized. |