use of com.codename1.rad.models.Attribute in project CodeRAD by shannah.
the class UI method textArea.
public static FieldNode textArea(Attribute... atts) {
FieldNode fieldNode = new FieldNode(atts);
fieldNode.setAttributes(TEXTAREA);
return fieldNode;
}
use of com.codename1.rad.models.Attribute in project CodeRAD by shannah.
the class UI method switchList.
public static FieldNode switchList(Attribute... atts) {
FieldNode fieldNode = new FieldNode(atts);
fieldNode.setAttributes(SWITCH_LIST);
return fieldNode;
}
use of com.codename1.rad.models.Attribute in project CodeRAD by shannah.
the class UI method table.
public static FieldNode table(Attribute... atts) {
FieldNode fieldNode = new FieldNode(atts);
fieldNode.setAttributes(TABLE);
return fieldNode;
}
use of com.codename1.rad.models.Attribute in project CodeRAD by shannah.
the class UI method comboBox.
public static FieldNode comboBox(Attribute... atts) {
FieldNode fieldNode = new FieldNode(atts);
fieldNode.setAttributes(COMBOBOX);
return fieldNode;
}
use of com.codename1.rad.models.Attribute in project CodeRAD by shannah.
the class UI method radioList.
public static FieldNode radioList(Attribute... atts) {
FieldNode fieldNode = new FieldNode(atts);
fieldNode.setAttributes(RADIO_LIST);
return fieldNode;
}
Aggregations