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 UIComponentConfigurationContext
getContext()
Gets the context stored on this configuration object.void
setContext(UIComponentConfigurationContext context)
Sets the givencontext
to this configuration object.
-
-
-
Method Detail
-
getContext
UIComponentConfigurationContext getContext()
Gets the context stored on this configuration object.- Returns:
- context stored on this configuration object or
null
if no context was set during creation.
-
setContext
void setContext(UIComponentConfigurationContext context)
Sets the givencontext
to this configuration object. Typically by a factory during creation.- Parameters:
context
- context to be set
-
-