Separator separator = separators.get(sectionIndex);
separator.setHeading(section.getHeading());
}
private void updateFieldLabel(Form.Section section, int fieldIndex) {
Form form = (Form)getComponent();
Component field = section.get(fieldIndex);
int sectionIndex = form.getSections().indexOf(section);
Label label = labels.get(sectionIndex).get(fieldIndex);
String labelText = Form.getLabel(field);
label.setText((labelText == null) ? "" : labelText + delimiter);
}