Search in sources :

Example 1 with TextAreaPropertyView

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);
}
Also used : TextAreaPropertyView(com.codename1.rad.propertyviews.TextAreaPropertyView) FieldNode(com.codename1.rad.nodes.FieldNode) TextArea(com.codename1.ui.TextArea)

Aggregations

FieldNode (com.codename1.rad.nodes.FieldNode)1 TextAreaPropertyView (com.codename1.rad.propertyviews.TextAreaPropertyView)1 TextArea (com.codename1.ui.TextArea)1