919293949596979899100101102
focusOn(previousInputPanel(focusedPanel)); } public static InputPanel nextInputPanel(Panel start) { InputPanel next = null; InputPanel first = null; boolean foundMe = false; for(Panel panel : start.getRoot()) { if(panel instanceof InputPanel)
119120121122123124125126127128129
return first; } public static InputPanel previousInputPanel(Panel start) { InputPanel previous = null; for(Panel panel : start.getRoot()) { if(panel instanceof InputPanel) {