com.vaadin.flow.component.grid.
Class FooterRow.FooterCell
- java.lang.Object
-
- com.vaadin.flow.component.grid.AbstractRow.AbstractCell
-
- com.vaadin.flow.component.grid.FooterRow.FooterCell
-
All Implemented Interfaces:
Enclosing class:
public static class FooterRow.FooterCell extends AbstractRow.AbstractCell
A footer cell in a Grid.
Author:
Vaadin Ltd.
See Also:
-
-
Method Summary
All Methods Modifier and Type Method and Description void
setComponent(Component component)
Sets the component as the content of this cell.
void
setText(String text)
Sets the text content of this cell.
-
Methods inherited from class com.vaadin.flow.component.grid.AbstractRow.AbstractCell
getColumn, setColumn
-
-
-
-
Method Detail
-
setText
public void setText(String text)
Description copied from class:
AbstractRow.AbstractCell
Sets the text content of this cell.
This will remove a component set with
AbstractRow.AbstractCell.setComponent(Component)
.Specified by:
setText
in classAbstractRow.AbstractCell
Parameters:
text
- the text to be shown in this cell
-
setComponent
public void setComponent(Component component)
Description copied from class:
AbstractRow.AbstractCell
Sets the component as the content of this cell.
This will remove text set with
AbstractRow.AbstractCell.setText(String)
.Specified by:
setComponent
in classAbstractRow.AbstractCell
Parameters:
component
- the component to set
-
-