in gwt incubator's FastTree, moveSelectionUp and moveSelectionDown are both
private.

Please either make these methods protected, so that I can subclass FastTree
and make my own public api to call them, or provide a public API to controll
navigation.

It coudld be as simple as adding these two methods :

public void moveSelectionDown() {
    moveSelectionDown(curSelection, true);
}
public void moveSelectionUp() {
    moveSelectionUp(curSelection);
}

Alternatively, extract the logic from these methods into public static
helpers which I can call to determine the 'previous' and 'next' elements,
and then I can call setSelectedItem

Cheers

Cameron

--~--~---------~--~----~------------~-------~--~----~
http://groups.google.com/group/Google-Web-Toolkit-Contributors
-~----------~----~----~----~------~----~------~--~---

Reply via email to