- 
    Enhancement 
- 
    Resolution: Won't Fix
- 
     P4 P4
- 
    fx2.0.2
- 
    Every environment 
                    javafx.scene.control.SelectionModel<T> has ambiguous select(int) and select(T) in case T is Integer. 
E.g.
SelectionModel<Integer> sm = ...
sm.select(2); // Meaning of this: select item with index 2 or select item with value 2.
My suggestion is to rename select(T) to selectItem(t)
E.g.
SelectionModel<Integer> sm = ...
sm.select(2); // Meaning of this: select item with index 2 or select item with value 2.
My suggestion is to rename select(T) to selectItem(t)