Note: a component that can be displayed in multiple pages can be implemented in two ways.
1) If it can be controlled by an external paging controller (i.e., {@link Paginal}), it shall hold an reference to one of the paging controllers. And, it doesn't need to implement {@link Pageable}. Example: grid, listbox and tree.
2) If it cannot be controlled by external controller, it shall implement the {@link Pageable} interface. @author tomyeh @since 2.4.1 @see Paginal
|
|