use of com.codename1.rad.nodes.FieldNode 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);
}
use of com.codename1.rad.nodes.FieldNode 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.nodes.FieldNode 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);
}
use of com.codename1.rad.nodes.FieldNode in project CodeRAD by shannah.
the class UIBuilder method htmlComponent.
public HTMLComponentPropertyView htmlComponent(Tag... tags) {
FieldNode fn = new FieldNode(UI.tags(tags));
fn.setParent(parentNode);
return new HTMLComponentPropertyView(new HTMLComponent(), entity, fn);
}
use of com.codename1.rad.nodes.FieldNode 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