Uses of Class
org.apache.wicket.markup.html.list.ListItem

Packages that use ListItem
org.apache.wicket.extensions.breadcrumb Package for working with bread crumb components. 
org.apache.wicket.markup.html.list List components for tabular data and such. 
 

Uses of ListItem in org.apache.wicket.extensions.breadcrumb
 

Methods in org.apache.wicket.extensions.breadcrumb with parameters of type ListItem
protected  void BreadCrumbBar.BreadCrumbsListView.populateItem(ListItem<IBreadCrumbParticipant> item)
           
 

Uses of ListItem in org.apache.wicket.markup.html.list
 

Subclasses of ListItem in org.apache.wicket.markup.html.list
 class OddEvenListItem<T>
          ListItem that adds class="odd" or class="even" html attribute depending on its index.
 

Methods in org.apache.wicket.markup.html.list that return ListItem
protected  ListItem<T> ListView.newItem(int index)
          Create a new ListItem for list item at index.
 

Methods in org.apache.wicket.markup.html.list that return types with arguments of type ListItem
 Iterator<? extends ListItem<T>> ListView.iterator()
           
 

Methods in org.apache.wicket.markup.html.list with parameters of type ListItem
 Link<Void> ListView.moveDownLink(String id, ListItem<T> item)
          Returns a link that will move the given item "down" (towards the end) in the listView.
 Link<Void> ListView.moveUpLink(String id, ListItem<T> item)
          Returns a link that will move the given item "up" (towards the beginning) in the listView.
protected  void ListView.onBeginPopulateItem(ListItem<T> item)
          Comes handy for ready made ListView based components which must implement populateItem() but you don't want to lose compile time error checking reminding the user to implement abstract populateItem().
protected abstract  void ListView.populateItem(ListItem<T> item)
          Populate a given item.
 Link<Void> ListView.removeLink(String id, ListItem<T> item)
          Returns a link that will remove this ListItem from the ListView that holds it.
protected  void ListView.renderItem(ListItem<?> item)
          Render a single item.
 



Copyright © 2004-2011 Apache Software Foundation. All Rights Reserved.