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