public class GridDataLoader extends java.lang.Object implements DataLoader, Cropper
Grid data loader.| Constructor and Description |
|---|
GridDataLoader() |
| Modifier and Type | Method and Description |
|---|---|
void |
doListDataChange(ListDataEvent event)
Handle event when ListDataEvent is fired from owner component.
|
java.util.Set<? extends Component> |
getAvailableAtClient()
Returns a set of child components that are available at the client,
or null if ALL available.
|
protected java.util.Set<? extends Component> |
getAvailableAtClient(int offset,
int limit) |
Component |
getCropOwner()
Returns the owner of the cropping scope.
|
int |
getLimit()
Returns the required visible limit size of the current loaded data chunk to be shown on the screen.
|
int |
getOffset()
Returns the requested visible offset of the current loaded data chunk.
|
Component |
getOwner()
Returns the associated owner component of this DataLoader.
|
java.lang.Object |
getRealRenderer()
Return the renderer to do rendering.
|
int |
getTotalSize()
Returns the total size of the data.
|
void |
init(Component owner,
int offset,
int limit)
Callback from the owner component and give a chance to initialize things.
|
protected boolean |
inPagingMold() |
boolean |
isCropper()
Returns whether it is a cropper, i.e., cropping is applied.
|
protected Component |
newUnloadedItem(java.lang.Object renderer,
int index)
Creates a new and unloaded row.
|
void |
reset()
Callback from the owner component and give a chance to reset things.
|
void |
setLoadAll(boolean b)
Sets whether to always load all items from ListModel.
|
void |
syncModel(int offset,
int limit)
Synchronizes the owner component to be consistent with the specified model.
|
void |
updateModelInfo()
Used to update some extra control information to the client.
|
public void init(Component owner, int offset, int limit)
DataLoaderinit in interface DataLoaderowner - the owner component of this DataLoader.public void reset()
DataLoaderreset in interface DataLoaderpublic final Component getOwner()
DataLoadergetOwner in interface DataLoaderpublic int getOffset()
DataLoadergetOffset in interface DataLoaderpublic int getLimit()
DataLoadergetLimit in interface DataLoaderpublic int getTotalSize()
DataLoadergetTotalSize in interface DataLoaderpublic void doListDataChange(ListDataEvent event)
DataLoaderdoListDataChange in interface DataLoaderprotected Component newUnloadedItem(java.lang.Object renderer, int index)
public java.lang.Object getRealRenderer()
DataLoadergetRealRenderer in interface DataLoaderpublic void syncModel(int offset,
int limit)
DataLoadersyncModel in interface DataLoaderoffset - the starting index of the range to do data synchronize.limit - the size of the range to do data synchronize. -1 means the current range.protected boolean inPagingMold()
public void updateModelInfo()
DataLoaderupdateModelInfo in interface DataLoaderpublic void setLoadAll(boolean b)
DataLoadersetLoadAll in interface DataLoaderpublic boolean isCropper()
CropperNote: this method is called when an child is detached, so
you have to count one more for the total number of children.
Example <= must be used, not <:
getChildCount() <= getPageSize()
The result of returning false is the same as not declaring
with Cropper.
public java.util.Set<? extends Component> getAvailableAtClient()
CropperComponent.getChildren().
In order words, you must use LinkedHashSet or similar to ensure the order
in the returned set.
Note: for better performance, it is better to return null if all children are available at the client.
Note: the components in the returned set can have different
parents. It is useful if you want to implement multi-level cropping,
such as tree. Refer to Cropper.getCropOwner().
getAvailableAtClient in interface Cropperprotected java.util.Set<? extends Component> getAvailableAtClient(int offset, int limit)
public Component getCropOwner()
CropperCropper.getAvailableAtClient() returns only the
available direct children of this component,
and this method returns this component.
It is so-called a single-level cropping, such as listbox and tree.
If you want to implement multi-level cropping, such as tree,
you can consider the whole tree as a cropping scope.
And, Cropper.getAvailableAtClient() returns all available items,
not just the child of this component. In additions,
this method returns the tree.
getCropOwner in interface CropperCopyright © 2005-2011 Potix Corporation. All Rights Reserved.