Interface SectionPanelModel
-
- All Known Subinterfaces:
EditorSectionPanelModel,RowlayoutSectionPanelModel
- All Known Implementing Classes:
AbstractNavigationAreaModel,AbstractSectionPanelModel,AdminBundleCockpitNavigationAreaModel,AdmincockpitNavigationAreaModel,CatalogNavigationAreaModel,DefaultEditorSectionPanelModel,DefaultNavigationAreaModel,DefaultSectionPanelModel,NavigationAreaModel,NavigationAreaModel,SubscriptionbundlecockpitsNavigationAreaModel
public interface SectionPanelModel
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddModelListener(SectionPanelListener sectionPanelListener)voidaddSection(Section section)voidaddSections(java.util.List<Section> sections)java.util.Map<java.lang.String,java.lang.Object>getContext()java.lang.StringgetImageUrl()java.lang.StringgetLabel()java.util.List<Message>getMessages()java.util.List<Section>getSections()voidinitialize()voidremoveAllSections()voidremoveModelListener(SectionPanelListener sectionPanelListener)voidremoveSection(Section section)voidremoveSections(java.util.Collection<Section> sections)voidsetSections(java.util.List<Section> sections)voidshowSection(Section section)voidupdate()
-
-
-
Method Detail
-
getLabel
java.lang.String getLabel()
-
getImageUrl
java.lang.String getImageUrl()
-
getMessages
java.util.List<Message> getMessages()
-
getSections
java.util.List<Section> getSections()
-
getContext
java.util.Map<java.lang.String,java.lang.Object> getContext()
-
addModelListener
void addModelListener(SectionPanelListener sectionPanelListener)
-
removeModelListener
void removeModelListener(SectionPanelListener sectionPanelListener)
-
showSection
void showSection(Section section)
-
addSection
void addSection(Section section)
-
addSections
void addSections(java.util.List<Section> sections)
-
setSections
void setSections(java.util.List<Section> sections)
-
removeSection
void removeSection(Section section)
-
removeSections
void removeSections(java.util.Collection<Section> sections)
-
removeAllSections
void removeAllSections()
-
initialize
void initialize()
-
update
void update()
-
-