(Component current)
| 3107 | /// |
| 3108 | /// The next component in the focus traversal order. |
| 3109 | public Component getNextComponent(Component current) { |
| 3110 | return getTabIterator(current).getNext(); |
| 3111 | } |
| 3112 | |
| 3113 | /// Gets the previous component in focus traversal order. This will return the `Component#getNextFocusLeft()` |
| 3114 | /// if it is set. If not, it will return `Component#getNextFocusUp()` if it is set. If not, it will |
no test coverage detected