use of com.codename1.rad.nodes.FieldNode in project CodeRAD by shannah.
the class UI method switchListY.
public static FieldNode switchListY(Attribute... atts) {
FieldNode fieldNode = switchList(atts);
fieldNode.setAttributes(buttonListY());
return fieldNode;
}
use of com.codename1.rad.nodes.FieldNode in project CodeRAD by shannah.
the class UI method toggleSwitch.
public static FieldNode toggleSwitch(Attribute... atts) {
FieldNode fieldNode = new FieldNode(atts);
fieldNode.setAttributes(SWITCH);
return fieldNode;
}
use of com.codename1.rad.nodes.FieldNode 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.nodes.FieldNode 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.nodes.FieldNode 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;
}
Aggregations