Class AbstractHomepagePanelDescriptor
java.lang.Object
com.inductiveautomation.ignition.gateway.model.AbstractHomepagePanelDescriptor
- All Implemented Interfaces:
- IHomepagePanelDescriptor
public abstract class AbstractHomepagePanelDescriptor
extends Object
implements IHomepagePanelDescriptor
- 
Field SummaryFields
- 
Constructor SummaryConstructorsConstructorDescriptionAbstractHomepagePanelDescriptor(String panelName, String titleResourceKey, int suggestedOrder) 
- 
Method SummaryModifier and TypeMethodDescriptionReturn the resource key for the panel's help blurb.Deprecated.intgetOrder()A relative ordering for this panel.A unique name for this panel.A resource key to use as the panel title.booleanShould this panel be initially expanded or collapsed?booleanIs this homepage visible?abstract org.apache.wicket.markup.html.panel.PanelCreate the new panel to display.Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.inductiveautomation.ignition.gateway.model.IHomepagePanelDescriptorgetSearchableItems
- 
Field Details- 
panelNameA unique identifying name for this panel. Used to track the panel as the user reorders them and chooses to not display some panels.
- 
orderprotected int order
- 
titleResourceKey
- 
initiallyExpandedprotected boolean initiallyExpanded
- 
visibleprotected boolean visible
 
- 
- 
Constructor Details- 
AbstractHomepagePanelDescriptor
 
- 
- 
Method Details- 
getPanelNameDescription copied from interface:IHomepagePanelDescriptorA unique name for this panel. Used as a key to store preferences for the user to override this panel's settings.- Specified by:
- getPanelNamein interface- IHomepagePanelDescriptor
 
- 
getOrderpublic int getOrder()Description copied from interface:IHomepagePanelDescriptorA relative ordering for this panel. Lower numbers appear first.- Specified by:
- getOrderin interface- IHomepagePanelDescriptor
 
- 
getTitleResourceKeyDescription copied from interface:IHomepagePanelDescriptorA resource key to use as the panel title.- Specified by:
- getTitleResourceKeyin interface- IHomepagePanelDescriptor
 
- 
isInitiallyExpandedpublic boolean isInitiallyExpanded()Description copied from interface:IHomepagePanelDescriptorShould this panel be initially expanded or collapsed?- Specified by:
- isInitiallyExpandedin interface- IHomepagePanelDescriptor
 
- 
newPanelDescription copied from interface:IHomepagePanelDescriptorCreate the new panel to display.- Specified by:
- newPanelin interface- IHomepagePanelDescriptor
 
- 
isVisiblepublic boolean isVisible()Description copied from interface:IHomepagePanelDescriptorIs this homepage visible?- Specified by:
- isVisiblein interface- IHomepagePanelDescriptor
 
- 
getHelpResourceKeyDescription copied from interface:IHomepagePanelDescriptorReturn the resource key for the panel's help blurb.- Specified by:
- getHelpResourceKeyin interface- IHomepagePanelDescriptor
 
- 
getHelpTopicIdDeprecated.Description copied from interface:IHomepagePanelDescriptorReturn 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>- Specified by:
- getHelpTopicIdin interface- IHomepagePanelDescriptor
 
 
-