We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.shared.ui.grid.
Class SectionState.RowState
- java.lang.Object
-
- com.vaadin.shared.ui.grid.SectionState.RowState
-
All Implemented Interfaces:
Enclosing class:
public static class SectionState.RowState extends Object implements Serializable
The state of a header or footer row.
See Also:
-
-
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.
-
-