public interface LayoutManager extends Serializable
It manages access to layout definitions, widget definitions and widget types for a given category.
Modifier and Type | Method and Description |
---|---|
String |
getDefaultStoreCategory()
Return the default category used for storage
|
LayoutDefinition |
getLayoutDefinition(String layoutName)
Returns the registered layout definition for this name.
|
List<String> |
getLayoutDefinitionNames()
Returns the names of all the registered layout definitions
|
LayoutTypeDefinition |
getLayoutTypeDefinition(String typeName)
Returns the layout type definition with given name, or null if no layout type with this name is found.
|
List<LayoutTypeDefinition> |
getLayoutTypeDefinitions()
Returns the layout type definitions for all the registered layout types.
|
WidgetDefinition |
getWidgetDefinition(String widgetName)
Returns the registered widget definition for this name.
|
WidgetType |
getWidgetType(String typeName)
Returns the registered widget type for this type name.
|
WidgetTypeDefinition |
getWidgetTypeDefinition(String typeName)
Returns the widget type definition with given name, or null if no widget type with this name is found.
|
List<WidgetTypeDefinition> |
getWidgetTypeDefinitions()
Returns the widget type definitions for all the registered widget types.
|
String getDefaultStoreCategory()
WidgetType getWidgetType(String typeName)
If the no widget type is found with this name, return null.
WidgetTypeDefinition getWidgetTypeDefinition(String typeName)
List<WidgetTypeDefinition> getWidgetTypeDefinitions()
LayoutTypeDefinition getLayoutTypeDefinition(String typeName)
List<LayoutTypeDefinition> getLayoutTypeDefinitions()
LayoutDefinition getLayoutDefinition(String layoutName)
If the no definition is found with this name, return null.
List<String> getLayoutDefinitionNames()
WidgetDefinition getWidgetDefinition(String widgetName)
If the no definition is found with this name, return null.
Copyright © 2018 Nuxeo. All rights reserved.