Interface IHomepagePanelDescriptor
- 
- All Known Implementing Classes:
- AbstractHomepagePanelDescriptor
 
 public interface IHomepagePanelDescriptor
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description java.lang.StringgetHelpResourceKey()Return the resource key for the panel's help blurb.java.lang.StringgetHelpTopicId()Deprecated.This method will no longer exist in future versions.intgetOrder()A relative ordering for this panel.java.lang.StringgetPanelName()A unique name for this panel.default java.lang.Iterable<java.lang.String>getSearchableItems()Return a list of names of items that will appear within this homepage panel that should show up in the site-wide searchjava.lang.StringgetTitleResourceKey()A resource key to use as the panel title.booleanisInitiallyExpanded()Should this panel be initially expanded or collapsed?booleanisVisible()Is this homepage visible?org.apache.wicket.markup.html.panel.PanelnewPanel(java.lang.String id)Create the new panel to display.
 
- 
- 
- 
Method Detail- 
getPanelNamejava.lang.String getPanelName() A unique name for this panel. Used as a key to store preferences for the user to override this panel's settings.
 - 
getOrderint getOrder() A relative ordering for this panel. Lower numbers appear first.
 - 
getTitleResourceKeyjava.lang.String getTitleResourceKey() A resource key to use as the panel title.
 - 
isInitiallyExpandedboolean isInitiallyExpanded() Should this panel be initially expanded or collapsed?
 - 
newPanelorg.apache.wicket.markup.html.panel.Panel newPanel(java.lang.String id) Create the new panel to display.
 - 
isVisibleboolean isVisible() Is this homepage visible?
 - 
getHelpResourceKeyjava.lang.String getHelpResourceKey() Return the resource key for the panel's help blurb.
 - 
getHelpTopicId@Deprecated java.lang.String getHelpTopicId() Deprecated.This method will no longer exist in future versions.Return the name of the user manual topic to link to. The string ${HELP} will be replaced to a url to this help topic if found in the content pointed to by the help resource key. For example, the help blurb might be:This panel is great. You should use it lots. <a href="${HELP}">Learn more...</a>
 - 
getSearchableItemsdefault java.lang.Iterable<java.lang.String> getSearchableItems() Return a list of names of items that will appear within this homepage panel that should show up in the site-wide search
 
- 
 
-