172173174175176177178
* <code>initializers</code> will be called on each new {@link TextBox} * created by passing them in parameter. * */ public Widgets textBox() { return widgets(new TextBoxWidgetFactory(), null); }
182183184185186187188
* <code>initializers</code> will be called on each new {@link TextBox} * created by passing them in parameter. * */ public Widgets textBox(WidgetInitializer<TextBox> initializers) { return widgets(new TextBoxWidgetFactory(), initializers); }