Package io.jmix.flowui.view
Annotation Interface Install
Annotation for declarative handler methods in UI controllers.
 
Example:
Example:
    @Install(to = "label", subject = "formatter")
    protected String formatValue(Integer value) {
        // the method used as Label formatter
        return "1.0";
    }
 - See Also:
- 
Optional Element SummaryOptional Elements
- 
Element Details- 
targetTarget target- Returns:
- type of target
 - Default:
- COMPONENT
 
- 
typeClass<?> type- Returns:
- type of functional interface, can be used instead of subject()
 - Default:
- java.lang.Object.class
 
- 
subjectString subject- Returns:
- property name that will be set using annotated method
 - Default:
- ""
 
- 
toString to- Returns:
- id or path to target object
 - Default:
- ""
 
- 
requiredboolean requiredDeclares whether the annotated dependency is required.Defaults to true.- Default:
- true
 
 
-