Uses of Class
com.vaadin.shared.ui.label.ContentMode
-
Packages that use ContentMode Package Description com.vaadin.client com.vaadin.shared.ui.grid com.vaadin.shared.ui.label com.vaadin.ui -
-
Uses of ContentMode in com.vaadin.client
Methods in com.vaadin.client that return ContentMode Modifier and Type Method Description ContentMode
TooltipInfo. getContentMode()
Gets the tooltip title's content mode.Methods in com.vaadin.client with parameters of type ContentMode Modifier and Type Method Description void
TooltipInfo. setContentMode(ContentMode contentMode)
Sets the tooltip title's content mode. -
Uses of ContentMode in com.vaadin.shared.ui.grid
Fields in com.vaadin.shared.ui.grid declared as ContentMode Modifier and Type Field Description ContentMode
GridState. cellTooltipContentMode
The content mode used for cell tooltips.ContentMode
GridState. rowTooltipContentMode
The content mode used for row tooltips. -
Uses of ContentMode in com.vaadin.shared.ui.label
Fields in com.vaadin.shared.ui.label declared as ContentMode Modifier and Type Field Description ContentMode
LabelState. contentMode
Methods in com.vaadin.shared.ui.label that return ContentMode Modifier and Type Method Description static ContentMode
ContentMode. valueOf(String name)
Returns the enum constant of this type with the specified name.static ContentMode[]
ContentMode. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of ContentMode in com.vaadin.ui
Fields in com.vaadin.ui declared as ContentMode Modifier and Type Field Description static ContentMode
Label. CONTENT_DEFAULT
Deprecated.As of 7.0, useTEXT
insteadstatic ContentMode
Label. CONTENT_PREFORMATTED
Deprecated.As of 7.0, usePREFORMATTED
insteadstatic ContentMode
Label. CONTENT_RAW
Deprecated.As of 7.0, useRAW
insteadstatic ContentMode
Label. CONTENT_TEXT
Deprecated.As of 7.0, useTEXT
insteadstatic ContentMode
Label. CONTENT_XHTML
Deprecated.As of 7.0, useHTML
insteadstatic ContentMode
Label. CONTENT_XML
Deprecated.As of 7.0, useXML
insteadMethods in com.vaadin.ui that return ContentMode Modifier and Type Method Description ContentMode
Grid. getCellDescriptionContentMode()
Gets the content mode used for cell descriptions.ContentMode
Label. getContentMode()
Gets the content mode of the Label.ContentMode
Grid. getRowDescriptionContentMode()
Gets the content mode used for row descriptions.Methods in com.vaadin.ui with parameters of type ContentMode Modifier and Type Method Description void
Grid. setCellDescriptionGenerator(Grid.CellDescriptionGenerator generator, ContentMode contentMode)
Sets theCellDescriptionGenerator
instance and content mode for generating optional descriptions (tooltips) for individual Grid cells.void
Label. setContentMode(ContentMode contentMode)
Sets the content mode of the Label.void
Grid. setRowDescriptionGenerator(Grid.RowDescriptionGenerator generator, ContentMode contentMode)
Sets theRowDescriptionGenerator
instance for generating optional descriptions (tooltips) for Grid rows.Constructors in com.vaadin.ui with parameters of type ContentMode Constructor Description Label(Property contentSource, ContentMode contentMode)
Creates a new instance of Label with text-contents read from given datasource.Label(String content, ContentMode contentMode)
Creates a new instance of Label with text-contents.
-