Package io.jmix.fullcalendarflowui.sys
Class FullCalendarViewInstallDependencyInjector
java.lang.Object
io.jmix.fullcalendarflowui.sys.FullCalendarViewInstallDependencyInjector
- All Implemented Interfaces:
DependencyInjector
@Order(890)
@Component("fcalen_FullCalendarViewInstallDependencyInjector")
public class FullCalendarViewInstallDependencyInjector
extends Object
implements DependencyInjector
An injection that autowired methods that are annotated by the
Install
annotation
for the FullCalendar
elements.-
Nested Class Summary
Nested classes/interfaces inherited from interface io.jmix.flowui.sys.autowire.DependencyInjector
DependencyInjector.AutowireContext<T extends com.vaadin.flow.component.Composite<?>>
-
Field Summary
-
Constructor Summary
ConstructorDescriptionFullCalendarViewInstallDependencyInjector
(ReflectionCacheManager reflectionCacheManager) -
Method Summary
Modifier and TypeMethodDescriptionvoid
autowire
(DependencyInjector.AutowireContext<?> autowireContext) The method is invoked when the component instance is created.protected void
doAutowiring
(ReflectionCacheManager.AnnotatedMethod<Install> annotatedMethod, View<?> view, Collection<Object> autowired) protected Object
getInstallTargetInstance
(View<?> controller, String targetId) protected String
getTargetId
(Install annotation) boolean
isApplicable
(DependencyInjector.AutowireContext<?> autowireContext) Checks whether this injector can wire the passed injection context.
-
Field Details
-
reflectionCacheManager
-
-
Constructor Details
-
FullCalendarViewInstallDependencyInjector
-
-
Method Details
-
autowire
Description copied from interface:DependencyInjector
The method is invoked when the component instance is created. Used to autowire dependencies to the UI component.- Specified by:
autowire
in interfaceDependencyInjector
- Parameters:
autowireContext
- injection context
-
doAutowiring
protected void doAutowiring(ReflectionCacheManager.AnnotatedMethod<Install> annotatedMethod, View<?> view, Collection<Object> autowired) -
getInstallTargetInstance
-
getTargetId
-
isApplicable
Description copied from interface:DependencyInjector
Checks whether this injector can wire the passed injection context.- Specified by:
isApplicable
in interfaceDependencyInjector
- Parameters:
autowireContext
- injection content that need to be checked- Returns:
true
if the passed injection context can be wired,false
otherwise
-