Package com.vaadin.v7.ui
Interface Grid.CellDescriptionGenerator
-
- All Superinterfaces:
Serializable
- Enclosing class:
- Grid
@Deprecated public static interface Grid.CellDescriptionGenerator extends Serializable
Deprecated.A callback interface for generating optional descriptions (tooltips) for Grid cells. If a cell has both arow descriptionand a cell description, the latter has precedence.- Since:
- 7.6
- See Also:
Grid.setCellDescriptionGenerator(CellDescriptionGenerator)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description StringgetDescription(Grid.CellReference cell)Deprecated.Called by Grid to generate a description (tooltip) for a cell.
-
-
-
Method Detail
-
getDescription
String getDescription(Grid.CellReference cell)
Deprecated.Called by Grid to generate a description (tooltip) for a cell. The description may contain HTML which is rendered directly; if this is not desired the returned string must be escaped by the implementing method.- Parameters:
cell- the cell to generate a description for- Returns:
- the cell description or
nullfor no description
-
-