That was one thing that was done before that i believe
because i my refactor i didn't touch that.

johan


Gwyn Evans wrote:
Thanks. Just for completeness, the other change I came across was the removal
of my ListView's .getItemCount(), which I replaced with
.getList().size().

/Gwyn

On 24/08/05, Johan Compagner <[EMAIL PROTECTED]> wrote:
it is a pretty simple change
All

PageableListViewXXXXXX
from package: wicket.markup.html.list
<file:///c:/workspace/wicket/src/java/wicket/markup/html/list/> are now
PagingXXXXX

in the package wicket.markup.html.navigation.paging

And IPageableComponent == IPageable.

The constructors calls are the same

One thing to take care of (if you did use @override annotation you would
notice it)

PagingNavigator.newNavigation() is changed:

    protected PagingNavigation newNavigation(final IPageable pageable,
final IPagingLabelProvider labelProvider)
    {
        return new PagingNavigation("navigation", pageable,labelProvider);
    }

Now with the extra labelProvider param.
So if you have overriden that. You have to change youre method signature
to match it with the label provider.

johan


PageableListViewNavigator

Gwyn Evans wrote:
Hi,
  Is there a summary anywhere as to what the Pageable changes are?

  Is it a simple change from
    ...list.PageableListViewNavigator -> ...navigation.paging.PagingNavigation
and
    ...list.IPageableComponent -> ...navigation.paging.IPageable

or are there other/functional changes needed by users of the old
class/interface?

/Gwyn



-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
_______________________________________________
Wicket-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wicket-user



-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
_______________________________________________
Wicket-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to