Interface Row
-
- All Known Implementing Classes:
FlyweightRow
public interface Row
A representation of a row in anEscalator
.- Since:
- 7.4
- Author:
- Vaadin Ltd
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.gwt.dom.client.TableRowElement
getElement()
Gets the root element for this row.int
getRow()
Gets the row index.
-
-
-
Method Detail
-
getRow
int getRow()
Gets the row index.- Returns:
- the row index
-
getElement
com.google.gwt.dom.client.TableRowElement getElement()
Gets the root element for this row.The
EscalatorUpdater
may update the class names of the element and add inline styles, but may not modify the contained DOM structure.If you wish to modify the cells within this row element, access them via the
List<
objects passed in toCell
>EscalatorUpdater.updateCells(Row, List)
- Returns:
- the root element of the row
-
-