use of com.codename1.rad.propertyviews.TextAreaPropertyView in project CodeRAD by shannah.
the class UIBuilder method textArea.
public TextAreaPropertyView textArea(Tag... tags) {
FieldNode fn = new FieldNode(UI.tags(tags));
fn.setParent(parentNode);
return new TextAreaPropertyView(new TextArea(), entity, fn);
}
Aggregations