192193194195196197198
* <code>initializers</code> will be called on each new {@link TextBox} * created by passing them in parameter. * */ public Widgets textArea() { return widgets(new TextAreaWidgetFactory(), null); }
202203204205206207208
* <code>initializers</code> will be called on each new {@link TextBox} * created by passing them in parameter. * */ public Widgets textArea(WidgetInitializer<TextArea> initializers) { return widgets(new TextAreaWidgetFactory(), initializers); }