Package org.teamapps.ux.component.form
Interface FieldContainer
public interface FieldContainer
Can be added to a form. Contains fields that will be treated by the form as it teats its on fields.
In particular
AbstractForm.validate()will validate theFieldContainer's fieldsAbstractForm.applyRecordValuesToFields(Object)andAbstractForm.applyFieldValuesToRecord(Object)will respect theFieldContainer's fieldsAbstractForm.getFields()andAbstractForm.getFieldsMap()will contain theFieldContainer's fields
-
Method Summary
Modifier and TypeMethodDescriptionMap<String, AbstractField<?>> Must not change between invocations!
-
Method Details
-
getMainComponent
Component getMainComponent() -
getFields
Map<String,AbstractField<?>> getFields()Must not change between invocations!
-