Patches item #1288863, was opened at 2005-09-12 16:01
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=684977&aid=1288863&group_id=119783

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Igor Vaynberg (ivaynberg)
Assigned to: Nobody/Anonymous (nobody)
Summary: forgotten refactors in pagingnavigator

Initial Comment:
Index:
src/java/wicket/markup/html/navigation/paging/PagingNavigator.java
===================================================================
RCS file:
/cvsroot/wicket/wicket/src/java/wicket/markup/html/navigation/paging/PagingNavigator.java,v
retrieving revision 1.1
diff -u -r1.1 PagingNavigator.java
---
src/java/wicket/markup/html/navigation/paging/PagingNavigator.java
21 Aug 2005 15:18:14 -0000      1.1
+++
src/java/wicket/markup/html/navigation/paging/PagingNavigator.java
12 Sep 2005 15:57:15 -0000
@@ -31,7 +31,7 @@
 public class PagingNavigator extends Panel
 {
        /** The navigation bar to be printed, e.g. 1 | 2 | 3
etc. */
-       private final PagingNavigation
pageableListViewNavigation;
+       private final PagingNavigation pagingNavigation;
 
        /**
         * Constructor.
@@ -61,8 +61,8 @@
 
                
                // Get the navigation bar and add it to the hierarchy
-               this.pageableListViewNavigation =
newNavigation(pageable, labelProvider);
-               add(pageableListViewNavigation);
+               this.pagingNavigation = newNavigation(pageable,
labelProvider);
+               add(pagingNavigation);
 
                // Add additional page links
                add(new PagingNavigationLink("first", pageable, 0));
@@ -90,8 +90,8 @@
         * Gets the pageable navigation component for
configuration purposes.
         * @return the associated pageable navigation.
         */
-       public final PagingNavigation
getPageableListViewNavigation()
+       public final PagingNavigation getPagingNavigation()
        {
-               return pageableListViewNavigation;
+               return pagingNavigation;
        }
 }
\ No newline at end of file


----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=684977&aid=1288863&group_id=119783


-------------------------------------------------------
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-develop mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wicket-develop

Reply via email to