package bluej.stride.slots;
| Created by neil on 27/04/15.
|
public interface FocusParent<T>{
| Focuses the previous control, or whatever is suitable for when the up key
| is pressed on the "src" control.
|
* @param toEnd If true, and the destination for focus is a slot, move the cursor to the end of the slot
*/
public defVis void focusUp(T src, boolean cursorToEnd);
public defVis void focusDown(T src);
|
|
public defVis void focusRight(T src);
|
|
public defVis void focusEnter(T src);
|
|
public defVis void focusLeft(T src);
|
|
}