Uses of Interface
org.vaadin.miki.superfields.itemgrid.CellGenerator
-
Packages that use CellGenerator Package Description org.vaadin.miki.superfields.itemgrid -
-
Uses of CellGenerator in org.vaadin.miki.superfields.itemgrid
Methods in org.vaadin.miki.superfields.itemgrid that return CellGenerator Modifier and Type Method Description CellGenerator<T>ItemGrid. getCellGenerator()Returns currentCellGeneratorused to generate cells.CellGenerator<T>ItemGrid. getPaddingCellGenerator()Returns the cell generator used for constructing padding cells.Methods in org.vaadin.miki.superfields.itemgrid with parameters of type CellGenerator Modifier and Type Method Description voidItemGrid. setCellGenerator(CellGenerator<T> cellGenerator)Sets newCellGenerator.voidItemGrid. setPaddingCellGenerator(CellGenerator<T> paddingCellGenerator)Sets cell generator for padding cells.ItemGrid<T>ItemGrid. withCellGenerator(CellGenerator<T> generator)ChainsItemGrid.setCellGenerator(CellGenerator)and returns itself.ItemGrid<T>ItemGrid. withPaddingCellGenerator(CellGenerator<T> paddingCellGenerator)ChainsItemGrid.setPaddingCellGenerator(CellGenerator)and returns itself.Constructors in org.vaadin.miki.superfields.itemgrid with parameters of type CellGenerator Constructor Description ItemGrid(CellGenerator<T> generator, CellSelectionHandler<T> handler, T... items)Creates the component with givenCellGenerator,CellSelectionHandlerand items.ItemGrid(CellGenerator<T> generator, T... items)Creates the component with given items andCellGenerator, but with defaultCellSelectionHandler.ItemGrid(T defaultValue, Supplier<C> mainContainerSupplier, CellGenerator<T> generator, CellSelectionHandler<T> handler, T... items)Creates the component with givenCellGenerator,CellSelectionHandlerand items, overriding default (empty) value.ItemGrid(T defaultValue, CellGenerator<T> generator, CellSelectionHandler<T> handler, T... items)Creates the component with givenCellGenerator,CellSelectionHandlerand items, overriding default (empty) value.
-