Package io.jmix.flowui.sys.registration
Class CustomComponentsLoaderConfig
java.lang.Object
io.jmix.flowui.sys.registration.CustomComponentsLoaderConfig
- All Implemented Interfaces:
LoaderConfig
@Order(110)
@Component("flowui_CustomComponentsLoaderConfig")
public class CustomComponentsLoaderConfig
extends Object
implements LoaderConfig
Contains UI component loaders from add-ons and project configurations.
- See Also:
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionClass<? extends ComponentLoader>
getLoader
(org.dom4j.Element element) Class<? extends ComponentLoader>
getViewLoader
(org.dom4j.Element root) protected void
registerLoader
(String tagName, Class<? extends ComponentLoader> loaderClass) boolean
supports
(org.dom4j.Element element) Checks whether the config contains a loader that supports the givenelement
.
-
Field Details
-
loaders
-
-
Constructor Details
-
CustomComponentsLoaderConfig
public CustomComponentsLoaderConfig()
-
-
Method Details
-
supports
public boolean supports(org.dom4j.Element element) Description copied from interface:LoaderConfig
Checks whether the config contains a loader that supports the givenelement
.- Specified by:
supports
in interfaceLoaderConfig
- Parameters:
element
- element- Returns:
- true if the config contains suitable loader, of false otherwise
-
getViewLoader
- Specified by:
getViewLoader
in interfaceLoaderConfig
- Parameters:
root
- view's root element- Returns:
- loader class for view or
null
if config does not support givenroot
-
getLoader
- Specified by:
getLoader
in interfaceLoaderConfig
- Parameters:
element
- element to load- Returns:
ComponentLoader
instance
-
registerLoader
-