Uses of Interface
org.vaadin.miki.superfields.itemgrid.CellGenerator
Packages that use CellGenerator
-
Uses of CellGenerator in org.vaadin.miki.superfields.itemgrid
Methods in org.vaadin.miki.superfields.itemgrid that return CellGeneratorModifier and TypeMethodDescriptionItemGrid.getCellGenerator()Returns currentCellGeneratorused to generate cells.ItemGrid.getPaddingCellGenerator()Returns the cell generator used for constructing padding cells.Methods in org.vaadin.miki.superfields.itemgrid with parameters of type CellGeneratorModifier and TypeMethodDescriptionvoidItemGrid.setCellGenerator(CellGenerator<T> cellGenerator) Sets newCellGenerator.voidItemGrid.setPaddingCellGenerator(CellGenerator<T> paddingCellGenerator) Sets cell generator for padding cells.ItemGrid.withCellGenerator(CellGenerator<T> generator) ChainsItemGrid.setCellGenerator(CellGenerator)and returns itself.ItemGrid.withPaddingCellGenerator(CellGenerator<T> paddingCellGenerator) ChainsItemGrid.setPaddingCellGenerator(CellGenerator)and returns itself.Constructors in org.vaadin.miki.superfields.itemgrid with parameters of type CellGeneratorModifierConstructorDescriptionItemGrid(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.