Package com.microstrategy.web.app.gui
Interface CartFontStyles
-
- All Superinterfaces:
Cart
,GuiElement
- All Known Implementing Classes:
CartFontStylesImpl
public interface CartFontStyles extends Cart
CartFontStyles interface that defines minimum contract all cart font styles must implement.- Since:
- MicroStrategy Web 7.3.1 or earlier
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
renderAdditionalInfo(MarkupOutput out)
renderAdditionalInfo, method that renders additional information shown to the user.void
renderAvailable(MarkupOutput out, ShortcutList fontNamesPicker)
renderAvailable, function that abstracts Available output.void
renderAvailable(MarkupOutput out, java.lang.String fontNamesFile)
Deprecated.userenderAvailable(MarkupOutput, ShortcutList)
instead.void
renderCart(MarkupOutput out, ShortcutList fontNamesPicker, java.util.Enumeration selectedItems)
renderCart, function that abstracts standard Cart output.void
renderCart(MarkupOutput out, java.lang.String fontNamesFile, java.util.Enumeration selectedItems)
Deprecated.userenderCart(MarkupOutput, ShortcutList, Enumeration)
instead.-
Methods inherited from interface com.microstrategy.web.app.gui.Cart
getProperty, initializeCart, renderActionImage, renderAdd, renderAddAll, renderAvailable, renderAvailable, renderCart, renderCart, renderDown, renderIncrementalFetch, renderLabel, renderLabel, renderMatchCase, renderRemove, renderRemoveAll, renderSearch, renderSearchButton, renderSearchField, renderSelected, renderSelected, renderUp, setEnabled, setHideWaitPageFlag, setProperty
-
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
-
renderCart
void renderCart(MarkupOutput out, java.lang.String fontNamesFile, java.util.Enumeration selectedItems)
Deprecated.userenderCart(MarkupOutput, ShortcutList, Enumeration)
instead.renderCart, function that abstracts standard Cart output.- Parameters:
out
- where to write the output of the method.fontNamesFile
- XML file which contains the font names available.selectedItems
- enumeration of all selected items
-
renderCart
void renderCart(MarkupOutput out, ShortcutList fontNamesPicker, java.util.Enumeration selectedItems)
renderCart, function that abstracts standard Cart output.- Parameters:
out
- where to write the output of the method.fontNamesPicker
-ShortcutList
instance with the font name picker information.selectedItems
- enumeration of all selected items- Since:
- MicroStrategy Web 8.0.0
-
renderAvailable
void renderAvailable(MarkupOutput out, ShortcutList fontNamesPicker)
renderAvailable, function that abstracts Available output.- Parameters:
out
- where to write the output of the method.fontNamesPicker
-ShortcutList
instance with the font name picker information.- Since:
- MicroStrategy Web 8.0.0
-
renderAvailable
void renderAvailable(MarkupOutput out, java.lang.String fontNamesFile)
Deprecated.userenderAvailable(MarkupOutput, ShortcutList)
instead.renderAvailable, function that abstracts Available output.- Parameters:
out
- where to write the output of the method.fontNamesFile
- XML file which contains the font names available.
-
renderAdditionalInfo
void renderAdditionalInfo(MarkupOutput out)
renderAdditionalInfo, method that renders additional information shown to the user.- Parameters:
out
- where to write the output of the method.
-
-