Interface ListViewConfiguration
-
- All Superinterfaces:
UIComponentConfiguration
- All Known Implementing Classes:
DefaultListViewConfiguration
,MultiTypeListMainAreaComponentFactory.MultiTypeListViewConfiguration
public interface ListViewConfiguration extends UIComponentConfiguration
The Interface ListViewConfiguration.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<DynamicColumnProvider>
getDynamicColumnProviders()
Gets the dynamic column providers.java.lang.String
getHeaderPopupBean()
Gets the header popup bean.ColumnGroupConfiguration
getRootColumnGroupConfiguration()
Gets the root column group configuration.boolean
isAllowCreateInlineItems()
Checks if is allow create inline items.void
setAllowCreateInlineItems(boolean allowCreateInlineItems)
Sets the allow create inline items.void
setRootColumnConfigurationGroup(ColumnGroupConfiguration rootGroupConfig)
Sets the root column configuration group.
-
-
-
Method Detail
-
getRootColumnGroupConfiguration
ColumnGroupConfiguration getRootColumnGroupConfiguration()
Gets the root column group configuration.- Returns:
- the root column group configuration
-
setRootColumnConfigurationGroup
void setRootColumnConfigurationGroup(ColumnGroupConfiguration rootGroupConfig)
Sets the root column configuration group.- Parameters:
rootGroupConfig
- the new root column configuration group
-
isAllowCreateInlineItems
boolean isAllowCreateInlineItems()
Checks if is allow create inline items.- Returns:
- true, if is allow create inline items
-
setAllowCreateInlineItems
void setAllowCreateInlineItems(boolean allowCreateInlineItems)
Sets the allow create inline items.- Parameters:
allowCreateInlineItems
- the allow create inline items
-
getHeaderPopupBean
java.lang.String getHeaderPopupBean()
Gets the header popup bean.- Returns:
- the header popup bean
-
getDynamicColumnProviders
java.util.List<DynamicColumnProvider> getDynamicColumnProviders()
Gets the dynamic column providers.- Returns:
- the dynamic column providers
-
-