Interface ContextAwareUIComponentConfiguration
-
- All Superinterfaces:
UIComponentConfiguration
- All Known Implementing Classes:
AbstractUIComponentConfiguration,DefaultAdvancedSearchConfiguration,DefaultEditorConfiguration,DefaultListViewConfiguration,MultiTypeListMainAreaComponentFactory.MultiTypeListViewConfiguration
public interface ContextAwareUIComponentConfiguration extends UIComponentConfiguration
Component configuration holding a context. This context is passed during creation and is used by persistence strategy.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UIComponentConfigurationContextgetContext()Gets the context stored on this configuration object.voidsetContext(UIComponentConfigurationContext context)Sets the givencontextto this configuration object.
-
-
-
Method Detail
-
getContext
UIComponentConfigurationContext getContext()
Gets the context stored on this configuration object.- Returns:
- context stored on this configuration object or
nullif no context was set during creation.
-
setContext
void setContext(UIComponentConfigurationContext context)
Sets the givencontextto this configuration object. Typically by a factory during creation.- Parameters:
context- context to be set
-
-