Package io.jmix.flowui.view.builder
Class FetchPlanAwareEntityTransformer
java.lang.Object
io.jmix.flowui.view.builder.FetchPlanAwareEntityTransformer
- All Implemented Interfaces:
- EditedEntityTransformer
@Component("flowui_FetchPlanAwareEntityTransformer")
@Order(100)
public class FetchPlanAwareEntityTransformer
extends Object
implements EditedEntityTransformer
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescription<E> EtransformForCollectionContainer(E editedEntity, CollectionContainer<E> container) Transforms the entity to be added to the given container.<E> EtransformForField(E editedEntity, com.vaadin.flow.component.HasValue<?, E> field) Transforms the entity to be added to the given UI field.
- 
Constructor Details- 
FetchPlanAwareEntityTransformerpublic FetchPlanAwareEntityTransformer()
 
- 
- 
Method Details- 
transformForCollectionContainerDescription copied from interface:EditedEntityTransformerTransforms the entity to be added to the given container.- Specified by:
- transformForCollectionContainerin interface- EditedEntityTransformer
- Parameters:
- editedEntity- entity instance returned by detail view
- container- data container where the entity will be added
- Returns:
- transformed instance
 
- 
transformForFieldpublic <E> E transformForField(E editedEntity, com.vaadin.flow.component.HasValue<?, E> field) Description copied from interface:EditedEntityTransformerTransforms the entity to be added to the given UI field.- Specified by:
- transformForFieldin interface- EditedEntityTransformer
- Parameters:
- editedEntity- entity instance returned by detail view
- field- UI field where the entity will be displayed
- Returns:
- transformed instance
 
 
-