Class PmoBasedSectionFactory
- java.lang.Object
-
- org.linkki.core.ui.creation.section.PmoBasedSectionFactory
-
public class PmoBasedSectionFactory extends Object
Base class for a factory to create sections based on an annotated PMO.- See Also:
UISection,UITextField,UICheckBox,UIDateField,UIComboBox,UIIntegerField
-
-
Constructor Summary
Constructors Constructor Description PmoBasedSectionFactory()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LinkkiSectioncreateAndBindSection(Object pmo, BindingContext bindingContext)Creates a new section based on the given annotated PMO and binds the created controls via the given binding context to the PMO.BaseSectioncreateBaseSection(Object pmo, BindingContext bindingContext)Creates a new base section based on the given annotated PMO and binds the created controls via the given binding context to the PMO.LinkkiSectioncreateSection(Object pmo, BindingContext bindingContext)Creates a new section based on the given annotated PMO and binds the created controls via the given binding context to the PMO.
-
-
-
Method Detail
-
createSection
public LinkkiSection createSection(Object pmo, BindingContext bindingContext)
Creates a new section based on the given annotated PMO and binds the created controls via the given binding context to the PMO. If the given PMO is aContainerPmo, a table section is created.
-
createBaseSection
public BaseSection createBaseSection(Object pmo, BindingContext bindingContext)
Creates a new base section based on the given annotated PMO and binds the created controls via the given binding context to the PMO.
-
createAndBindSection
public static LinkkiSection createAndBindSection(Object pmo, BindingContext bindingContext)
Creates a new section based on the given annotated PMO and binds the created controls via the given binding context to the PMO. If the given PMO is aContainerPmo, a table section is created.
-
-