use of org.linkki.core.ui.section.descriptor.PropertyElementDescriptors in project linkki by linkki-framework.
the class SectionCreationContext method createUiElements.
private void createUiElements(BaseSection section) {
UIAnnotationReader annotationReader = new UIAnnotationReader(getPmo().getClass());
for (PropertyElementDescriptors elementDescriptors : annotationReader.getUiElements()) {
ElementDescriptor uiElement = elementDescriptors.getDescriptor(pmo);
bindUiElement(uiElement, createLabelAndComponent(section, uiElement));
}
}
Aggregations