use of com.codename1.rad.propertyviews.LabelPropertyView in project CodeRAD by shannah.
the class UIBuilder method image.
public LabelPropertyView image(Tag... tags) {
FieldNode fn = new FieldNode(UI.tags(tags));
fn.setParent(parentNode);
return LabelPropertyView.createIconLabel(new com.codename1.ui.Label(), entity, fn);
}
use of com.codename1.rad.propertyviews.LabelPropertyView in project CodeRAD by shannah.
the class UIBuilder method label.
public LabelPropertyView label(Tag... tags) {
FieldNode fn = new FieldNode(UI.tags(tags));
fn.setParent(parentNode);
return new LabelPropertyView(new com.codename1.ui.Label(), entity, fn);
}
Aggregations