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