Uses of Interface
com.google.gwt.view.client.SelectionModel
- 
Packages that use SelectionModel Package Description com.google.gwt.user.cellview.client The "cellview" widget set.com.google.gwt.view.client Classes and interfaces used by thecellviewwidget set.
- 
- 
Uses of SelectionModel in com.google.gwt.user.cellview.clientMethods in com.google.gwt.user.cellview.client that return SelectionModel Modifier and Type Method Description SelectionModel<? super T>AbstractHasData. getSelectionModel()SelectionModel<? super C>CellTreeNodeView.NodeCellList. getSelectionModel()SelectionModel<? super T>HasDataPresenter. getSelectionModel()Methods in com.google.gwt.user.cellview.client with parameters of type SelectionModel Modifier and Type Method Description protected voidAbstractCellTable. renderRowValues(SafeHtmlBuilder sb, java.util.List<T> values, int start, SelectionModel<? super T> selectionModel)Deprecated.as of GWT 2.5, use aCellTableBuilderto customize the table structure insteadprotected abstract voidAbstractHasData. renderRowValues(SafeHtmlBuilder sb, java.util.List<T> values, int start, SelectionModel<? super T> selectionModel)Render all row values into the specifiedSafeHtmlBuilder.protected voidCellBrowser.BrowserCellList. renderRowValues(SafeHtmlBuilder sb, java.util.List<T> values, int start, SelectionModel<? super T> selectionModel)protected voidCellList. renderRowValues(SafeHtmlBuilder sb, java.util.List<T> values, int start, SelectionModel<? super T> selectionModel)protected voidAbstractCellTable. renderRowValuesLegacy(SafeHtmlBuilder sb, java.util.List<T> values, int start, SelectionModel<? super T> selectionModel)Deprecated.as of GWT 2.5, use aCellTableBuilderto customize the table structure insteadvoidHasDataPresenter.View. replaceAllChildren(java.util.List<T> values, SelectionModel<? super T> selectionModel, boolean stealFocus)Replace all children with the specified values.voidHasDataPresenter.View. replaceChildren(java.util.List<T> values, int start, SelectionModel<? super T> selectionModel, boolean stealFocus)Replace existing elements starting at the specified index.voidAbstractHasData. setSelectionModel(SelectionModel<? super T> selectionModel)Set theSelectionModelused by thisHasData.voidAbstractHasData. setSelectionModel(SelectionModel<? super T> selectionModel, CellPreviewEvent.Handler<T> selectionEventManager)Set theSelectionModelthat defines which items are selected and theCellPreviewEvent.Handlerthat controls how user selection is handled.voidCellTreeNodeView.NodeCellList. setSelectionModel(SelectionModel<? super C> selectionModel)voidHasDataPresenter. setSelectionModel(SelectionModel<? super T> selectionModel)
- 
Uses of SelectionModel in com.google.gwt.view.clientSubinterfaces of SelectionModel in com.google.gwt.view.client Modifier and Type Interface Description interfaceSetSelectionModel<T>A model that allows getting all elements and clearing the selection.Classes in com.google.gwt.view.client that implement SelectionModel Modifier and Type Class Description classDefaultSelectionModel<T>A convenienceSelectionModelthat allows items to be selected according to a subclass-defined rule, plus a list of positive or negative exceptions.classMultiSelectionModel<T>A simple selection model that allows multiple items to be selected.classNoSelectionModel<T>A selection model that does not allow selection, but fires selection change events.classOrderedMultiSelectionModel<T>A simple selection model that allows multiple items to be selected and retains order of selection.static classSelectionModel.AbstractSelectionModel<T>A default implementation ofSelectionModelthat provides listener addition and removal.classSingleSelectionModel<T>A simple selection model that allows only one item to be selected a a time.Methods in com.google.gwt.view.client that return SelectionModel Modifier and Type Method Description SelectionModel<? super T>HasData. getSelectionModel()Get theSelectionModelused by thisHasData.SelectionModel<? super T>TreeViewModel.DefaultNodeInfo. getSelectionModel()SelectionModel<? super T>TreeViewModel.NodeInfo. getSelectionModel()Get theSelectionModelused for the children of this node.Methods in com.google.gwt.view.client with parameters of type SelectionModel Modifier and Type Method Description protected voidDefaultSelectionEventManager. handleSelectionEvent(CellPreviewEvent<T> event, DefaultSelectionEventManager.SelectAction action, SelectionModel<? super T> selectionModel)Handle an event that could cause a value to be selected.voidHasData. setSelectionModel(SelectionModel<? super T> selectionModel)Set theSelectionModelused by thisHasData.Constructors in com.google.gwt.view.client with parameters of type SelectionModel Constructor Description DefaultNodeInfo(AbstractDataProvider<T> dataProvider, Cell<T> cell, SelectionModel<? super T> selectionModel, ValueUpdater<T> valueUpdater)Construct a newTreeViewModel.DefaultNodeInfo.DefaultNodeInfo(AbstractDataProvider<T> dataProvider, Cell<T> cell, SelectionModel<? super T> selectionModel, CellPreviewEvent.Handler<T> selectionEventManager, ValueUpdater<T> valueUpdater)Construct a newTreeViewModel.DefaultNodeInfo.
 
-