Package com.microstrategy.web.app.gui
Interface ShortcutElement
-
- All Superinterfaces:
GuiElement
- All Known Implementing Classes:
AbstractShortcut
,ShortcutAnchor
,ShortcutBean
,ShortcutButton
,ShortcutButtonLabel
,ShortcutCaption
,ShortcutColorPickerPane
,ShortcutCombo
,ShortcutDefault
,ShortcutGridInfo
,ShortcutGridLevels
,ShortcutInput
,ShortcutLabel
,ShortcutPickerOption
,ShortcutPulldown
,ShortcutTextcombo
public interface ShortcutElement extends GuiElement
This is the interface for a GUI Element that renders a single Shortcut Configuration Element. It just extends the GuiElement interface.- Since:
- MicroStrategy Web 8.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Shortcut
getShortcut()
Obtain theShortcut
instance to be rendered by this elementboolean
isIncludeSubItems()
This flag indicates whether the HTML should include the subitems content when this element is rendered.void
setIncludeSubItems(boolean value)
This flag indicates whether the HTML should include the subitems content when this element is rendered.void
setShortcut(Shortcut config)
Sets theShortcut
instance to be rendered by this element-
Methods inherited from interface com.microstrategy.web.app.gui.GuiElement
getAppContext, getDescriptor, getDescriptor, getEventManager, getExtraInput, getExtraUrl, getFeatures, getMessages, getName, getUseIFrame, getWebComponent, renderElement, renderElement, setAppContext, setExtraInput, setExtraUrl, setName, setUseIFrame, setWebComponent
-
-
-
-
Method Detail
-
setIncludeSubItems
void setIncludeSubItems(boolean value)
This flag indicates whether the HTML should include the subitems content when this element is rendered.- Parameters:
value
- boolean: true if shortcut should include it automatically.
-
isIncludeSubItems
boolean isIncludeSubItems()
This flag indicates whether the HTML should include the subitems content when this element is rendered.- Returns:
- boolean true if subitems content will be included when the element is rendered.
-
setShortcut
void setShortcut(Shortcut config)
Sets theShortcut
instance to be rendered by this element- Parameters:
config
-Shortcut
instance to be rendered by this element.
-
-