use of com.codename1.rad.nodes.FormNode in project CodeRAD by shannah.
the class EntityEditor method buildSections.
private void buildSections() {
for (SectionNode section : (FormNode) rootNode) {
SectionEditor sectionEditor = new SectionEditor(entity, section);
sectionEditor.build();
add(sectionEditor);
}
}
Aggregations