nikhilbchilwant / google-web-toolkit-incubator

Automatically exported from code.google.com/p/google-web-toolkit-incubator
1 stars 1 forks source link

expose moveSelectionUp and moveSelectionDown in FastTree #254

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
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 control
navigation.

It could be as simple as adding these two methods :

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

Original issue reported on code.google.com by cbr...@gmail.com on 18 Mar 2009 at 9:55

GoogleCodeExporter commented 8 years ago

Original comment by nwolf+legacy@google.com on 19 Mar 2009 at 6:40

GoogleCodeExporter commented 8 years ago
Fixed for gen2 FastTree, should be apparent in next release.

Original comment by nwolf+legacy@google.com on 27 Mar 2009 at 6:20