// Sends the focus back the tab
getSkinnable().requestFocus();
}
if (index == -1 && direction.equals(Direction.NEXT)) {
// Sends the focus to the next focusable control outside of the TabPane
new TraversalEngine(getSkinnable(), false).trav(getSkinnable(), Direction.NEXT);
}
}