-
Bug
-
Resolution: Fixed
-
P2
-
fx2.0
The latest API change to TextInputControl (not yet integrated at the time of writing) changes the constructor from public TextInputControl() to protected TextInputControl(Content). This causes the current builder generation to fail for this class, because it determines that it does not know how to call that constructor. But TextInputControl is an abstract class, so its builder does not in fact call any constructor. The consequence is that the generated builders for the subclasses TextField and TextArea become nearly useless, since they no longer inherit from Node and Control.
I am proposing to fix this bug now because the fix is straightforward. The only alternative is to undo the change to TextInputControl, or at least restore its public no-arg constructor in addition to the new one.
I am proposing to fix this bug now because the fix is straightforward. The only alternative is to undo the change to TextInputControl, or at least restore its public no-arg constructor in addition to the new one.