I worked with your code and 've found some things that could be changed. at TextFieldWidget.class there is unnessesary method
public void setTextBoxBase(TextBoxBase textBoxBase) { textBoxBase = textBox; }
it would be very handle to make getter for textbox field for this class, because some changeListeners are not implemented (ChangeListener).
Your project is very usefull and helps to save much time!
This method should have been "protected" instead of "public"
I will fix it in the next release and I will also make sure all listeners are implemented. Thanks for pointing them out. Addy
Log in to post a comment.
I worked with your code and 've found some things that could be changed.
at TextFieldWidget.class there is unnessesary method
public void setTextBoxBase(TextBoxBase textBoxBase) {
textBoxBase = textBox;
}
it would be very handle to make getter for textbox field for this class, because some changeListeners are not implemented (ChangeListener).
Your project is very usefull and helps to save much time!
This method should have been "protected" instead of "public"
I will fix it in the next release and I will also make sure all listeners are implemented.
Thanks for pointing them out.
Addy