> org.apache.pivot.wtk.TextInputCharacterListener; > org.apache.pivot.wtk.TextInputTextListener;
See TextInputContentListener. > org.apache.pivot.collections.FilteredList; This class was removed as it had the potential for memory leaks, and its functionality is sufficiently easy to implement at the application level. If you still need it, you should still be able to use the 1.5 version, or at least port it to 2.0 with minimal effort. > Missing methods: > dialog.setMinimumPreferredWidth(...) > dialog.setMaximumPreferredHeight(...) Renamed to setMinimumWidth/Height() and setMaximumWidth/Height(). > TextInput.getTextInputCharacterListeners(...) See above. > TabPabe.setLabel(...) Replaced by TabPane.setTabData(). > Renamed methods : > setSuggestions >> setSuggestionData on SuggestionPopup > > What about deprecations ? Deprecations would have limited the evolution of some of these APIs. We felt that releasing a cleaner API for v2 would be better in the long run than maintaining backward compatibility with the 1.x branch. G
