Class AbstractHasData<T>
- java.lang.Object
-
- com.google.gwt.user.client.ui.UIObject
-
- com.google.gwt.user.client.ui.Widget
-
- com.google.gwt.user.client.ui.Composite
-
- com.google.gwt.user.cellview.client.AbstractHasData<T>
-
- Type Parameters:
T- the data type of each row
- All Implemented Interfaces:
HasAttachHandlers,HasHandlers,HasKeyboardPagingPolicy,HasKeyboardSelectionPolicy,EventListener,Focusable,HasVisibility,IsRenderable,IsWidget,HasCellPreviewHandlers<T>,HasData<T>,HasKeyProvider<T>,HasRows
- Direct Known Subclasses:
AbstractCellTable,CellList
public abstract class AbstractHasData<T> extends Composite implements HasData<T>, HasKeyProvider<T>, Focusable, HasKeyboardPagingPolicy
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAbstractHasData.DefaultKeyboardSelectionHandler<T>Default implementation of a keyboard navigation handler.static classAbstractHasData.RedrawEventEvent fired when one or more existing rows are re-rendered.-
Nested classes/interfaces inherited from class com.google.gwt.user.client.ui.UIObject
UIObject.DebugIdImpl, UIObject.DebugIdImplEnabled
-
Nested classes/interfaces inherited from interface com.google.gwt.user.cellview.client.HasKeyboardPagingPolicy
HasKeyboardPagingPolicy.KeyboardPagingPolicy
-
Nested classes/interfaces inherited from interface com.google.gwt.user.cellview.client.HasKeyboardSelectionPolicy
HasKeyboardSelectionPolicy.KeyboardSelectionPolicy
-
-
Field Summary
Fields Modifier and Type Field Description (package private) booleanisFocusedA boolean indicating that the widget has focus.-
Fields inherited from class com.google.gwt.user.client.ui.UIObject
DEBUG_ID_PREFIX
-
-
Constructor Summary
Constructors Constructor Description AbstractHasData(Element elem, int pageSize, ProvidesKey<T> keyProvider)Constructs anAbstractHasDatawith the given page size.AbstractHasData(Widget widget, int pageSize, ProvidesKey<T> keyProvider)Constructs anAbstractHasDatawith the given page size.
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description HandlerRegistrationaddCellPreviewHandler(CellPreviewEvent.Handler<T> handler)Adds aCellPreviewEventhandler.HandlerRegistrationaddLoadingStateChangeHandler(LoadingStateChangeEvent.Handler handler)Add aLoadingStateChangeEvent.Handlerto be notified of changes in the loading state.HandlerRegistrationaddRangeChangeHandler(RangeChangeEvent.Handler handler)Add aRangeChangeEvent.Handler.HandlerRegistrationaddRedrawHandler(AbstractHasData.RedrawEvent.Handler handler)Adds the given handler as a callback that is notified of events of typeAbstractHasData.RedrawEvent.HandlerRegistrationaddRowCountChangeHandler(RowCountChangeEvent.Handler handler)Add aRowCountChangeEvent.Handler.(package private) HandlerRegistrationaddValueChangeHandler(ValueChangeHandler<java.util.List<T>> handler)Add aValueChangeHandlerthat is called when the display values change.(package private) voidadopt(Widget child)Adopt the specified widget.protected booleancellConsumesEventType(Cell<?> cell, java.lang.String eventType)Check if a cell consumes the specified event type.protected voidcheckRowBounds(int row)Check that the row is within the correct bounds.protected ElementconvertToElements(SafeHtml html)Convert the specified HTML into DOM elements and return the parent of the DOM elements.(package private) static ElementconvertToElements(Widget widget, Element tmpElem, SafeHtml html)Convenience method to convert the specified HTML into DOM elements and return the parent of the DOM elements.protected abstract booleandependsOnSelection()Check whether or not the cells in the view depend on the selection state.(package private) voiddoAttach(Widget child)Attach a child.(package private) voiddoDetach(Widget child)Detach a child.chargetAccessKey()Get the access key.protected abstract ElementgetChildContainer()Return the element that holds the rendered cells.protected ElementgetChildElement(int index)Get the element that represents the specified index.TgetDisplayedItem(int indexOnPage)Deprecated.usegetVisibleItem(int)insteadjava.util.List<T>getDisplayedItems()Deprecated.usegetVisibleItems()insteadHasKeyboardPagingPolicy.KeyboardPagingPolicygetKeyboardPagingPolicy()protected abstract ElementgetKeyboardSelectedElement()Get the element that has keyboard selection.intgetKeyboardSelectedRow()Get the index of the row that is currently selected via the keyboard, relative to the page start index.HasKeyboardSelectionPolicy.KeyboardSelectionPolicygetKeyboardSelectionPolicy()ProvidesKey<T>getKeyProvider()Return the key provider.intgetPageSize()Return the range size.intgetPageStart()Return the range start.(package private) HasDataPresenter<T>getPresenter()ElementgetRowContainer()Return the outer element that contains all of the rendered row values.intgetRowCount()Get the total count of all rows.SelectionModel<? super T>getSelectionModel()Get theSelectionModelused by thisHasData.intgetTabIndex()Gets the widget's position in the tab index.java.lang.ObjectgetValueKey(T value)Get the key for the specified value.TgetVisibleItem(int indexOnPage)Get the row value at the specified visible index.intgetVisibleItemCount()Get the number of visible items being displayed.java.util.List<T>getVisibleItems()Return the row values that the widget is currently displaying as an immutable list.RangegetVisibleRange()Get the range of visible rows.protected abstract booleanisKeyboardNavigationSuppressed()Check if keyboard navigation is being suppressed, such as when the user is editing a cell.booleanisRowCountExact()Check if the total row count is exact, or an estimate.protected booleanisRowWithinBounds(int row)Checks that the row is within bounds of the view.protected voidonBlur()Called when the widget is blurred.voidonBrowserEvent(Event event)Handle browser events.protected voidonBrowserEvent2(Event event)Called afteronBrowserEvent(Event)completes.protected voidonFocus()Called when the widget is focused.protected voidonLoadingStateChanged(LoadingStateChangeEvent.LoadingState state)Called when the loading state changes.protected voidonUnload()This method is called immediately before a widget will be detached from the browser's document.voidredraw()Redraw the widget using the existing data.voidredrawRow(int absRowIndex)Redraw a single row using the existing data.protected abstract voidrenderRowValues(SafeHtmlBuilder sb, java.util.List<T> values, int start, SelectionModel<? super T> selectionModel)Render all row values into the specifiedSafeHtmlBuilder.(package private) static voidreplaceAllChildren(Widget widget, Element childContainer, SafeHtml html)Convenience method to replace all children of a Widget.protected voidreplaceAllChildren(java.util.List<T> values, SafeHtml html)Replace all children with the specified html.(package private) static voidreplaceChildren(Widget widget, Element childContainer, Element newChildren, int start, SafeHtml html)Convenience method to convert the specified HTML into DOM elements and replace the existing elements starting at the specified index.protected voidreplaceChildren(java.util.List<T> values, int start, SafeHtml html)Convert the specified HTML into DOM elements and replace the existing elements starting at the specified index.protected abstract booleanresetFocusOnCell()Reset focus on the currently focused cell.voidsetAccessKey(char key)Sets the widget's 'access key'.voidsetFocus(boolean focused)Explicitly focus/unfocus this widget.protected voidsetFocusable(Element elem, boolean focusable)Make an element focusable or not.voidsetKeyboardPagingPolicy(HasKeyboardPagingPolicy.KeyboardPagingPolicy policy)protected abstract voidsetKeyboardSelected(int index, boolean selected, boolean stealFocus)Update an element to reflect its keyboard selected state.voidsetKeyboardSelectedRow(int row)Set the keyboard selected row.voidsetKeyboardSelectedRow(int row, boolean stealFocus)Set the keyboard selected row and optionally focus on the new row.voidsetKeyboardSelectionHandler(CellPreviewEvent.Handler<T> keyboardSelectionReg)Set the handler that handles keyboard selection/navigation.voidsetKeyboardSelectionPolicy(HasKeyboardSelectionPolicy.KeyboardSelectionPolicy policy)voidsetPageSize(int pageSize)Set the number of rows per page and refresh the view.voidsetPageStart(int pageStart)Set the starting index of the current visible page.voidsetRowCount(int count)Set the exact total count of all rows.voidsetRowCount(int size, boolean isExact)Set the total count of all rows, specifying whether the count is exact or an estimate.voidsetRowData(int start, java.util.List<? extends T> values)Set a values associated with the rows in the visible range.voidsetRowData(java.util.List<? extends T> values)Set the complete list of values to display on one page.protected voidsetSelected(Element elem, boolean selected)Deprecated.this method is never called by AbstractHasData, render the selected styles inrenderRowValues(SafeHtmlBuilder, List, int, SelectionModel)voidsetSelectionModel(SelectionModel<? super T> selectionModel)Set theSelectionModelused by thisHasData.voidsetSelectionModel(SelectionModel<? super T> selectionModel, CellPreviewEvent.Handler<T> selectionEventManager)Set theSelectionModelthat defines which items are selected and theCellPreviewEvent.Handlerthat controls how user selection is handled.voidsetTabIndex(int index)Sets the widget's position in the tab index.voidsetVisibleRange(int start, int length)Set the visible range or rows.voidsetVisibleRange(Range range)Set the visible range or rows.voidsetVisibleRangeAndClearData(Range range, boolean forceRangeChangeEvent)Set the visible range and clear the current visible data.(package private) voidshowOrHide(Element element, boolean show)Show or hide an element.-
Methods inherited from class com.google.gwt.user.client.ui.Composite
claimElement, getWidget, initializeClaimedElement, initWidget, isAttached, onAttach, onDetach, render, render, resolvePotentialElement, setWidget
-
Methods inherited from class com.google.gwt.user.client.ui.Widget
addAttachHandler, addBitlessDomHandler, addDomHandler, addHandler, asWidget, asWidgetOrNull, createHandlerManager, delegateEvent, doAttachChildren, doDetachChildren, fireEvent, getHandlerCount, getLayoutData, getParent, isOrWasAttached, onLoad, removeFromParent, setLayoutData, sinkEvents, unsinkEvents
-
Methods inherited from class com.google.gwt.user.client.ui.UIObject
addStyleDependentName, addStyleName, ensureDebugId, ensureDebugId, ensureDebugId, getAbsoluteLeft, getAbsoluteTop, getElement, getOffsetHeight, getOffsetWidth, getStyleElement, getStyleName, getStyleName, getStylePrimaryName, getStylePrimaryName, getTitle, isVisible, isVisible, onEnsureDebugId, removeStyleDependentName, removeStyleName, setElement, setElement, setHeight, setPixelSize, setSize, setStyleDependentName, setStyleName, setStyleName, setStyleName, setStyleName, setStylePrimaryName, setStylePrimaryName, setTitle, setVisible, setVisible, setWidth, sinkBitlessEvent, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent
-
-
-
-
Constructor Detail
-
AbstractHasData
public AbstractHasData(Element elem, int pageSize, ProvidesKey<T> keyProvider)
Constructs anAbstractHasDatawith the given page size.- Parameters:
elem- the parentElementpageSize- the page sizekeyProvider- the key provider, or null
-
AbstractHasData
public AbstractHasData(Widget widget, int pageSize, ProvidesKey<T> keyProvider)
Constructs anAbstractHasDatawith the given page size.- Parameters:
widget- the parentWidgetpageSize- the page sizekeyProvider- the key provider, or null
-
-
Method Detail
-
convertToElements
static Element convertToElements(Widget widget, Element tmpElem, SafeHtml html)
Convenience method to convert the specified HTML into DOM elements and return the parent of the DOM elements.- Parameters:
html- the HTML to converttmpElem- a temporary element- Returns:
- the parent element
-
replaceAllChildren
static void replaceAllChildren(Widget widget, Element childContainer, SafeHtml html)
Convenience method to replace all children of a Widget.- Parameters:
widget- the widget who's contents will be replacedchildContainer- the container that holds the contentshtml- the html to set
-
replaceChildren
static void replaceChildren(Widget widget, Element childContainer, Element newChildren, int start, SafeHtml html)
Convenience method to convert the specified HTML into DOM elements and replace the existing elements starting at the specified index. If the number of children specified exceeds the existing number of children, the remaining children should be appended.- Parameters:
widget- the widget who's contents will be replacedchildContainer- the container that holds the contentsnewChildren- an element containing the new childrenstart- the start index to replacehtml- the HTML to convert
-
addCellPreviewHandler
public HandlerRegistration addCellPreviewHandler(CellPreviewEvent.Handler<T> handler)
Description copied from interface:HasCellPreviewHandlersAdds aCellPreviewEventhandler.- Specified by:
addCellPreviewHandlerin interfaceHasCellPreviewHandlers<T>- Parameters:
handler- the handler- Returns:
- the registration for the event
-
addLoadingStateChangeHandler
public HandlerRegistration addLoadingStateChangeHandler(LoadingStateChangeEvent.Handler handler)
Add aLoadingStateChangeEvent.Handlerto be notified of changes in the loading state.- Parameters:
handler- the handle- Returns:
- the registration for the handler
-
addRangeChangeHandler
public HandlerRegistration addRangeChangeHandler(RangeChangeEvent.Handler handler)
Description copied from interface:HasRowsAdd aRangeChangeEvent.Handler.- Specified by:
addRangeChangeHandlerin interfaceHasRows- Parameters:
handler- the handler- Returns:
- a
HandlerRegistrationto remove the handler
-
addRowCountChangeHandler
public HandlerRegistration addRowCountChangeHandler(RowCountChangeEvent.Handler handler)
Description copied from interface:HasRowsAdd aRowCountChangeEvent.Handler.- Specified by:
addRowCountChangeHandlerin interfaceHasRows- Parameters:
handler- the handler- Returns:
- a
HandlerRegistrationto remove the handler
-
addRedrawHandler
public HandlerRegistration addRedrawHandler(AbstractHasData.RedrawEvent.Handler handler)
Adds the given handler as a callback that is notified of events of typeAbstractHasData.RedrawEvent.
-
getAccessKey
public char getAccessKey()
Get the access key.- Returns:
- the access key, or -1 if not set
- See Also:
setAccessKey(char)
-
getDisplayedItem
@Deprecated public T getDisplayedItem(int indexOnPage)
Deprecated.usegetVisibleItem(int)insteadGet the row value at the specified visible index. Index 0 corresponds to the first item on the page.- Parameters:
indexOnPage- the index on the page- Returns:
- the row value
-
getDisplayedItems
@Deprecated public java.util.List<T> getDisplayedItems()
Deprecated.usegetVisibleItems()insteadReturn the row values that the widget is currently displaying as an immutable list.- Returns:
- a List of displayed items
-
getKeyboardPagingPolicy
public HasKeyboardPagingPolicy.KeyboardPagingPolicy getKeyboardPagingPolicy()
Description copied from interface:HasKeyboardPagingPolicy- Specified by:
getKeyboardPagingPolicyin interfaceHasKeyboardPagingPolicy- Returns:
- the paging policy
- See Also:
HasKeyboardPagingPolicy.setKeyboardPagingPolicy(KeyboardPagingPolicy)
-
getKeyboardSelectedRow
public int getKeyboardSelectedRow()
Get the index of the row that is currently selected via the keyboard, relative to the page start index.This is not same as the selected row in the
SelectionModel. The keyboard selected row refers to the row that the user navigated to via the keyboard or mouse.- Returns:
- the currently selected row, or -1 if none selected
-
getKeyboardSelectionPolicy
public HasKeyboardSelectionPolicy.KeyboardSelectionPolicy getKeyboardSelectionPolicy()
Description copied from interface:HasKeyboardSelectionPolicy- Specified by:
getKeyboardSelectionPolicyin interfaceHasKeyboardSelectionPolicy- Returns:
- the selection policy
- See Also:
HasKeyboardSelectionPolicy.setKeyboardSelectionPolicy(KeyboardSelectionPolicy)
-
getKeyProvider
public ProvidesKey<T> getKeyProvider()
Description copied from interface:HasKeyProviderReturn the key provider.- Specified by:
getKeyProviderin interfaceHasKeyProvider<T>- Returns:
- the
ProvidesKeyinstance
-
getPageSize
public final int getPageSize()
Return the range size.- Returns:
- the size of the range as an int
- See Also:
getVisibleRange(),setPageSize(int)
-
getPageStart
public final int getPageStart()
Return the range start.- Returns:
- the start of the range as an int
- See Also:
getVisibleRange(),setPageStart(int)
-
getRowContainer
public Element getRowContainer()
Return the outer element that contains all of the rendered row values. This method delegates togetChildContainer();- Returns:
- the
Elementthat contains the rendered row values
-
getRowCount
public int getRowCount()
Description copied from interface:HasRowsGet the total count of all rows.- Specified by:
getRowCountin interfaceHasRows- Returns:
- the total row count
- See Also:
HasRows.setRowCount(int)
-
getSelectionModel
public SelectionModel<? super T> getSelectionModel()
Description copied from interface:HasDataGet theSelectionModelused by thisHasData.- Specified by:
getSelectionModelin interfaceHasData<T>- Returns:
- the
SelectionModel - See Also:
HasData.setSelectionModel(SelectionModel)
-
getTabIndex
public int getTabIndex()
Description copied from interface:FocusableGets the widget's position in the tab index.- Specified by:
getTabIndexin interfaceFocusable- Returns:
- the widget's tab index
-
getValueKey
public java.lang.Object getValueKey(T value)
Get the key for the specified value. If a keyProvider is not specified or the value is null, the value is returned. If the key provider is specified, it is used to get the key from the value.- Parameters:
value- the value- Returns:
- the key
-
getVisibleItem
public T getVisibleItem(int indexOnPage)
Description copied from interface:HasDataGet the row value at the specified visible index. Index 0 corresponds to the first item on the page.- Specified by:
getVisibleItemin interfaceHasData<T>- Parameters:
indexOnPage- the index on the page- Returns:
- the row value
-
getVisibleItemCount
public int getVisibleItemCount()
Description copied from interface:HasDataGet the number of visible items being displayed. Note that this value might be less than the page size if there is not enough data to fill the page.- Specified by:
getVisibleItemCountin interfaceHasData<T>- Returns:
- the number of visible items on the page
-
getVisibleItems
public java.util.List<T> getVisibleItems()
Return the row values that the widget is currently displaying as an immutable list.- Specified by:
getVisibleItemsin interfaceHasData<T>- Returns:
- a List of displayed items
-
getVisibleRange
public Range getVisibleRange()
Description copied from interface:HasRowsGet the range of visible rows.- Specified by:
getVisibleRangein interfaceHasRows- Returns:
- the visible range
- See Also:
HasRows.setVisibleRange(Range),HasRows.setVisibleRange(int, int)
-
isRowCountExact
public boolean isRowCountExact()
Description copied from interface:HasRowsCheck if the total row count is exact, or an estimate.- Specified by:
isRowCountExactin interfaceHasRows- Returns:
- true if exact, false if an estimate
-
onBrowserEvent
public final void onBrowserEvent(Event event)
Handle browser events. Subclasses should overrideonBrowserEvent2(Event)if they want to extend browser event handling.- Specified by:
onBrowserEventin interfaceEventListener- Overrides:
onBrowserEventin classComposite- Parameters:
event- the event received- See Also:
onBrowserEvent2(Event)
-
redraw
public void redraw()
Redraw the widget using the existing data.
-
redrawRow
public void redrawRow(int absRowIndex)
Redraw a single row using the existing data.- Parameters:
absRowIndex- the absolute row index to redraw
-
setAccessKey
public void setAccessKey(char key)
Sets the widget's 'access key'. This key is used (in conjunction with a browser-specific modifier key) to automatically focus the widget.- Specified by:
setAccessKeyin interfaceFocusable- Parameters:
key- the widget's access key- See Also:
getAccessKey()
-
setFocus
public void setFocus(boolean focused)
Description copied from interface:FocusableExplicitly focus/unfocus this widget. Only one widget can have focus at a time, and the widget that does will receive all keyboard events. NOTE: Most browsers fire FocusEvents asynchronously. Especially within GWT tests, you'll need to make your test asynchronous to properly do verifications. SeeGWTTestCase#delayTestFinishfor more information on how to do this.
-
setKeyboardPagingPolicy
public void setKeyboardPagingPolicy(HasKeyboardPagingPolicy.KeyboardPagingPolicy policy)
Description copied from interface:HasKeyboardPagingPolicy- Specified by:
setKeyboardPagingPolicyin interfaceHasKeyboardPagingPolicy- Parameters:
policy- the paging policy- See Also:
HasKeyboardPagingPolicy.getKeyboardPagingPolicy()
-
setKeyboardSelectedRow
public final void setKeyboardSelectedRow(int row)
Set the keyboard selected row. The row index is the index relative to the current page start index.If keyboard selection is disabled, this method does nothing.
If the keyboard selected row is outside of the range of the current page (that is, less than 0 or greater than or equal to the page size), the page or range will be adjusted depending on the keyboard paging policy. If the keyboard paging policy is limited to the current range, the row index will be clipped to the current page.
- Parameters:
row- the row index relative to the page start
-
setKeyboardSelectedRow
public void setKeyboardSelectedRow(int row, boolean stealFocus)Set the keyboard selected row and optionally focus on the new row.- Parameters:
row- the row index relative to the page startstealFocus- true to focus on the new row- See Also:
setKeyboardSelectedRow(int)
-
setKeyboardSelectionHandler
public void setKeyboardSelectionHandler(CellPreviewEvent.Handler<T> keyboardSelectionReg)
Set the handler that handles keyboard selection/navigation.
-
setKeyboardSelectionPolicy
public void setKeyboardSelectionPolicy(HasKeyboardSelectionPolicy.KeyboardSelectionPolicy policy)
Description copied from interface:HasKeyboardSelectionPolicy- Specified by:
setKeyboardSelectionPolicyin interfaceHasKeyboardSelectionPolicy- Parameters:
policy- the selection policy- See Also:
HasKeyboardSelectionPolicy.getKeyboardSelectionPolicy()
-
setPageSize
public final void setPageSize(int pageSize)
Set the number of rows per page and refresh the view.- Parameters:
pageSize- the page size- See Also:
setVisibleRange(Range),getPageSize()
-
setPageStart
public final void setPageStart(int pageStart)
Set the starting index of the current visible page. The actual page start will be clamped in the range [0, getSize() - 1].- Parameters:
pageStart- the index of the row that should appear at the start of the page- See Also:
setVisibleRange(Range),getPageStart()
-
setRowCount
public final void setRowCount(int count)
Description copied from interface:HasRowsSet the exact total count of all rows. This method defers toHasRows.setRowCount(int, boolean).- Specified by:
setRowCountin interfaceHasRows- Parameters:
count- the exact total count- See Also:
HasRows.getRowCount()
-
setRowCount
public void setRowCount(int size, boolean isExact)Description copied from interface:HasRowsSet the total count of all rows, specifying whether the count is exact or an estimate.- Specified by:
setRowCountin interfaceHasRows- Parameters:
size- the total countisExact- true if the count is exact, false if an estimate- See Also:
HasRows.getRowCount()
-
setRowData
public final void setRowData(java.util.List<? extends T> values)
Set the complete list of values to display on one page.
Equivalent to calling
setRowCount(int)with the length of the list of values,setVisibleRange(Range)from 0 to the size of the list of values, andsetRowData(int, List)with a start of 0 and the specified list of values.- Parameters:
values-
-
setRowData
public void setRowData(int start, java.util.List<? extends T> values)Description copied from interface:HasDataSet a values associated with the rows in the visible range.
This method does not replace all rows in the display; it replaces the row values starting at the specified start index through the length of the specified values. You must call
HasRows.setRowCount(int)to set the total number of rows in the display. You should also useHasRows.setRowCount(int)to remove rows when the total number of rows decreases.- Specified by:
setRowDatain interfaceHasData<T>- Parameters:
start- the start index of the datavalues- the values within the range
-
setSelectionModel
public void setSelectionModel(SelectionModel<? super T> selectionModel)
Set theSelectionModelused by thisHasData.By default, selection occurs when the user clicks on a Cell or presses the spacebar. If you need finer control over selection, you can specify a
DefaultSelectionEventManagerusingsetSelectionModel(SelectionModel, com.google.gwt.view.client.CellPreviewEvent.Handler).DefaultSelectionEventManagerprovides some default implementations to handle checkbox based selection, as well as a blacklist or whitelist of columns to prevent or allow selection.- Specified by:
setSelectionModelin interfaceHasData<T>- Parameters:
selectionModel- theSelectionModel- See Also:
setSelectionModel(SelectionModel, com.google.gwt.view.client.CellPreviewEvent.Handler),getSelectionModel()
-
setSelectionModel
public void 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.- Parameters:
selectionModel- theSelectionModelthat defines selectionselectionEventManager- the handler that controls user selection
-
setTabIndex
public void setTabIndex(int index)
Description copied from interface:FocusableSets the widget's position in the tab index. If more than one widget has the same tab index, each such widget will receive focus in an arbitrary order. Setting the tab index to-1will cause this widget to be removed from the tab order.- Specified by:
setTabIndexin interfaceFocusable- Parameters:
index- the widget's tab index
-
setVisibleRange
public final void setVisibleRange(int start, int length)Description copied from interface:HasRowsSet the visible range or rows. This method defers toHasRows.setVisibleRange(Range).- Specified by:
setVisibleRangein interfaceHasRows- Parameters:
start- the start indexlength- the length- See Also:
HasRows.getVisibleRange()
-
setVisibleRange
public void setVisibleRange(Range range)
Description copied from interface:HasRowsSet the visible range or rows.- Specified by:
setVisibleRangein interfaceHasRows- Parameters:
range- the visible range- See Also:
HasRows.getVisibleRange()
-
setVisibleRangeAndClearData
public void setVisibleRangeAndClearData(Range range, boolean forceRangeChangeEvent)
Description copied from interface:HasDataSet the visible range and clear the current visible data.
If the second argument
forceRangeChangeEventis true, aRangeChangeEventwill be fired even if the range does not change. If false, aRangeChangeEventwill only be fired if the range changes.- Specified by:
setVisibleRangeAndClearDatain interfaceHasData<T>- Parameters:
range- the newRangeforceRangeChangeEvent- true to fire aRangeChangeEventeven if theRangedoesn't change
-
cellConsumesEventType
protected boolean cellConsumesEventType(Cell<?> cell, java.lang.String eventType)
Check if a cell consumes the specified event type.- Parameters:
cell- the celleventType- the event type to check- Returns:
- true if consumed, false if not
-
checkRowBounds
protected void checkRowBounds(int row)
Check that the row is within the correct bounds.- Parameters:
row- row index to check- Throws:
java.lang.IndexOutOfBoundsException
-
convertToElements
protected Element convertToElements(SafeHtml html)
Convert the specified HTML into DOM elements and return the parent of the DOM elements.- Parameters:
html- the HTML to convert- Returns:
- the parent element
-
dependsOnSelection
protected abstract boolean dependsOnSelection()
Check whether or not the cells in the view depend on the selection state.- Returns:
- true if cells depend on selection, false if not
-
getChildContainer
protected abstract Element getChildContainer()
Return the element that holds the rendered cells.- Returns:
- the container
Element
-
getChildElement
protected Element getChildElement(int index)
Get the element that represents the specified index.- Parameters:
index- the index of the row value- Returns:
- the child element, or null if it does not exist
-
getKeyboardSelectedElement
protected abstract Element getKeyboardSelectedElement()
Get the element that has keyboard selection.- Returns:
- the keyboard selected element
-
isKeyboardNavigationSuppressed
protected abstract boolean isKeyboardNavigationSuppressed()
Check if keyboard navigation is being suppressed, such as when the user is editing a cell.- Returns:
- true if suppressed, false if not
-
isRowWithinBounds
protected boolean isRowWithinBounds(int row)
Checks that the row is within bounds of the view.- Parameters:
row- row index to check- Returns:
- true if within bounds, false if not
-
onBlur
protected void onBlur()
Called when the widget is blurred.
-
onBrowserEvent2
protected void onBrowserEvent2(Event event)
Called afteronBrowserEvent(Event)completes.- Parameters:
event- the event that was fired
-
onFocus
protected void onFocus()
Called when the widget is focused.
-
onLoadingStateChanged
protected void onLoadingStateChanged(LoadingStateChangeEvent.LoadingState state)
Called when the loading state changes. By default, this implementation fires aLoadingStateChangeEvent.- Parameters:
state- the new loading state
-
onUnload
protected void onUnload()
Description copied from class:WidgetThis method is called immediately before a widget will be detached from the browser's document.
-
renderRowValues
protected abstract void renderRowValues(SafeHtmlBuilder sb, java.util.List<T> values, int start, SelectionModel<? super T> selectionModel) throws java.lang.UnsupportedOperationException
Render all row values into the specifiedSafeHtmlBuilder.Subclasses can optionally throw an
UnsupportedOperationExceptionif they prefer to render the rows inreplaceAllChildren(List, SafeHtml)andreplaceChildren(List, int, SafeHtml). In this case, theSafeHtmlargument will be null. Though a bit hacky, this is designed to supported legacy widgets that useSafeHtmlBuilder, and newer widgets that use other builders, such as the ElementBuilder API.- Parameters:
sb- theSafeHtmlBuilderto render intovalues- the row valuesstart- the absolute start index of the valuesselectionModel- theSelectionModel- Throws:
java.lang.UnsupportedOperationException- if the values will be rendered inreplaceAllChildren(List, SafeHtml)andreplaceChildren(List, int, SafeHtml)
-
replaceAllChildren
protected void replaceAllChildren(java.util.List<T> values, SafeHtml html)
Replace all children with the specified html.- Parameters:
values- the values of the new childrenhtml- the html to render, or null ifrenderRowValues(SafeHtmlBuilder, List, int, SelectionModel)throws anUnsupportedOperationException
-
replaceChildren
protected void replaceChildren(java.util.List<T> values, int start, SafeHtml html)
Convert the specified HTML into DOM elements and replace the existing elements starting at the specified index. If the number of children specified exceeds the existing number of children, the remaining children should be appended.- Parameters:
values- the values of the new childrenstart- the start index to be replaced, relative to the page starthtml- the html to render, or null ifrenderRowValues(SafeHtmlBuilder, List, int, SelectionModel)throws anUnsupportedOperationException
-
resetFocusOnCell
protected abstract boolean resetFocusOnCell()
Reset focus on the currently focused cell.- Returns:
- true if focus is taken, false if not
-
setFocusable
protected void setFocusable(Element elem, boolean focusable)
Make an element focusable or not.- Parameters:
elem- the elementfocusable- true to make focusable, false to make unfocusable
-
setKeyboardSelected
protected abstract void setKeyboardSelected(int index, boolean selected, boolean stealFocus)Update an element to reflect its keyboard selected state.- Parameters:
index- the index of the elementselected- true if selected, false if notstealFocus- true if the row should steal focus, false if not
-
setSelected
@Deprecated protected void setSelected(Element elem, boolean selected)
Deprecated.this method is never called by AbstractHasData, render the selected styles inrenderRowValues(SafeHtmlBuilder, List, int, SelectionModel)Update an element to reflect its selected state.- Parameters:
elem- the element to updateselected- true if selected, false if not
-
addValueChangeHandler
final HandlerRegistration addValueChangeHandler(ValueChangeHandler<java.util.List<T>> handler)
Add aValueChangeHandlerthat is called when the display values change. Used byCellBrowserto detect when the displayed data changes.- Parameters:
handler- the handler- Returns:
- a
HandlerRegistrationto remove the handler
-
adopt
void adopt(Widget child)
Adopt the specified widget.- Parameters:
child- the child to adopt
-
doAttach
void doAttach(Widget child)
Attach a child.- Parameters:
child- the child to attach
-
doDetach
void doDetach(Widget child)
Detach a child.- Parameters:
child- the child to detach
-
getPresenter
HasDataPresenter<T> getPresenter()
-
showOrHide
void showOrHide(Element element, boolean show)
Show or hide an element.- Parameters:
element- the elementshow- true to show, false to hide
-
-