Interface LayoutManager
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
AbstractLayoutManager
Layout manager interface.
It manages access to layout definitions, widget definitions and widget types for a given category.
- Author:
- Anahide Tchertchian
-
Method Summary
Modifier and TypeMethodDescriptionReturn the default category used for storagegetLayoutDefinition
(String layoutName) Returns the registered layout definition for this name.Returns the names of all the registered layout definitionsgetLayoutTypeDefinition
(String typeName) Returns the layout type definition with given name, or null if no layout type with this name is found.Returns the layout type definitions for all the registered layout types.getWidgetDefinition
(String widgetName) Returns the registered widget definition for this name.getWidgetType
(String typeName) Returns the registered widget type for this type name.getWidgetTypeDefinition
(String typeName) Returns the widget type definition with given name, or null if no widget type with this name is found.Returns the widget type definitions for all the registered widget types.
-
Method Details
-
getDefaultStoreCategory
String getDefaultStoreCategory()Return the default category used for storage- Since:
- 5.5
-
getWidgetType
Returns the registered widget type for this type name.If the no widget type is found with this name, return null.
-
getWidgetTypeDefinition
Returns the widget type definition with given name, or null if no widget type with this name is found.- Since:
- 5.4
-
getWidgetTypeDefinitions
List<WidgetTypeDefinition> getWidgetTypeDefinitions()Returns the widget type definitions for all the registered widget types.- Since:
- 5.4
-
getLayoutTypeDefinition
Returns the layout type definition with given name, or null if no layout type with this name is found.- Since:
- 6.0
-
getLayoutTypeDefinitions
List<LayoutTypeDefinition> getLayoutTypeDefinitions()Returns the layout type definitions for all the registered layout types.- Since:
- 6.0
-
getLayoutDefinition
Returns the registered layout definition for this name.If the no definition is found with this name, return null.
-
getLayoutDefinitionNames
Returns the names of all the registered layout definitions- Since:
- 5.5
-
getWidgetDefinition
Returns the registered widget definition for this name.If the no definition is found with this name, return null.
- Since:
- 5.1.7, 5.2.0
-