Package com.vaadin.shared.ui.grid
Class SectionState.RowState
- java.lang.Object
-
- com.vaadin.shared.ui.grid.SectionState.RowState
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- SectionState
public static class SectionState.RowState extends Object implements Serializable
The state of a header or footer row.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description Map<SectionState.CellState,Set<String>>
cellGroups
The map from a joint cell to column id sets in this row.Map<String,SectionState.CellState>
cells
The map from column ids to the cells in this row.boolean
defaultHeader
Whether this row is the default header row.String
styleName
The style name for the row.
-
Constructor Summary
Constructors Constructor Description RowState()
-
-
-
Field Detail
-
cells
public Map<String,SectionState.CellState> cells
The map from column ids to the cells in this row.
-
cellGroups
public Map<SectionState.CellState,Set<String>> cellGroups
The map from a joint cell to column id sets in this row.
-
defaultHeader
public boolean defaultHeader
Whether this row is the default header row. Always false for footer rows.
-
styleName
public String styleName
The style name for the row. Null if none.
-
-