use of com.codename1.rad.nodes.FieldNode in project CodeRAD by shannah.
the class UI method radio.
public static FieldNode radio(Attribute... atts) {
FieldNode fieldNode = new FieldNode(atts);
fieldNode.setAttributes(RADIO);
return fieldNode;
}
use of com.codename1.rad.nodes.FieldNode in project CodeRAD by shannah.
the class UI method checkboxListY.
public static FieldNode checkboxListY(Attribute... atts) {
FieldNode fieldNode = checkboxList(atts);
fieldNode.setAttributes(buttonListY());
return fieldNode;
}
use of com.codename1.rad.nodes.FieldNode in project CodeRAD by shannah.
the class UI method checkbox.
public static FieldNode checkbox(Attribute... atts) {
FieldNode fieldNode = new FieldNode(atts);
fieldNode.setAttributes(CHECKBOX);
return fieldNode;
}
use of com.codename1.rad.nodes.FieldNode in project CodeRAD by shannah.
the class UI method radioListY.
public static FieldNode radioListY(Attribute... atts) {
FieldNode out = radioList(atts);
out.setAttributes(buttonListY());
return out;
}
use of com.codename1.rad.nodes.FieldNode in project CodeRAD by shannah.
the class UI method htmlComponent.
public static FieldNode htmlComponent(Attribute... atts) {
FieldNode fieldNode = new FieldNode(atts);
fieldNode.setAttributes(HTML_COMPONENT);
return fieldNode;
}
Aggregations