Uses of Class
org.apache.wicket.markup.repeater.Item

Packages that use Item
org.apache.wicket.extensions.ajax.markup.html.repeater.data.table   
org.apache.wicket.extensions.markup.html.repeater.data.grid   
org.apache.wicket.extensions.markup.html.repeater.data.table   
org.apache.wicket.markup.repeater   
org.apache.wicket.markup.repeater.data   
 

Uses of Item in org.apache.wicket.extensions.ajax.markup.html.repeater.data.table
 

Methods in org.apache.wicket.extensions.ajax.markup.html.repeater.data.table that return Item
protected  Item<T> AjaxFallbackDefaultDataTable.newRowItem(String id, int index, IModel<T> model)
           
 

Uses of Item in org.apache.wicket.extensions.markup.html.repeater.data.grid
 

Methods in org.apache.wicket.extensions.markup.html.repeater.data.grid that return Item
protected  Item<ICellPopulator<T>> AbstractDataGridView.newCellItem(String id, int index, IModel<ICellPopulator<T>> model)
          Factory method for Item container that represents a cell.
protected  Item<T> AbstractDataGridView.newItem(String id, int index, IModel<T> model)
           
protected  Item<T> AbstractDataGridView.newRowItem(String id, int index, IModel<T> model)
          Factory method for Item container that represents a row.
 

Methods in org.apache.wicket.extensions.markup.html.repeater.data.grid with parameters of type Item
 void PropertyPopulator.populateItem(Item<ICellPopulator<T>> cellItem, String componentId, IModel<T> rowModel)
           
 void ICellPopulator.populateItem(Item<ICellPopulator<T>> cellItem, String componentId, IModel<T> rowModel)
          Method used to populate a cell in the DataGridView Implementation MUST add a component to the cellItem using the component id provided by componentId argument, otherwise a WicketRuntimeException will be thrown
protected  void AbstractDataGridView.populateItem(Item<T> item)
           
 

Uses of Item in org.apache.wicket.extensions.markup.html.repeater.data.table
 

Methods in org.apache.wicket.extensions.markup.html.repeater.data.table that return Item
protected  Item<T> DataTable.newCellItem(String id, int index, IModel<T> model)
          Factory method for Item container that represents a cell in the underlying DataGridView
protected  Item<T> DefaultDataTable.newRowItem(String id, int index, IModel<T> model)
           
protected  Item<T> DataTable.newRowItem(String id, int index, IModel<T> model)
          Factory method for Item container that represents a row in the underlying DataGridView
 

Methods in org.apache.wicket.extensions.markup.html.repeater.data.table with parameters of type Item
 void PropertyColumn.populateItem(Item<ICellPopulator<T>> item, String componentId, IModel<T> rowModel)
          Implementation of populateItem which adds a label to the cell whose model is the provided property expression evaluated against rowModelObject
 

Uses of Item in org.apache.wicket.markup.repeater
 

Subclasses of Item in org.apache.wicket.markup.repeater
 class OddEvenItem<T>
          Item that sets class="even" or class="odd" attributes based on its index
 

Methods in org.apache.wicket.markup.repeater that return Item
 Item<T> IItemFactory.newItem(int index, IModel<T> model)
          Factory method for instances of Item.
protected  Item<T> RefreshingView.newItem(String id, int index, IModel<T> model)
          Factory method for Item container.
 

Methods in org.apache.wicket.markup.repeater that return types with arguments of type Item
static Comparator<Item<?>> Item.IndexComparator.getInstance()
           
 Iterator<Item<T>> RefreshingView.getItems()
           
<T> Iterator<Item<T>>
ReuseIfModelsEqualStrategy.getItems(IItemFactory<T> factory, Iterator<IModel<T>> newModels, Iterator<Item<T>> existingItems)
           
<T> Iterator<Item<T>>
IItemReuseStrategy.getItems(IItemFactory<T> factory, Iterator<IModel<T>> newModels, Iterator<Item<T>> existingItems)
          Returns an iterator over items that will be added to the view.
<T> Iterator<Item<T>>
DefaultItemReuseStrategy.getItems(IItemFactory<T> factory, Iterator<IModel<T>> newModels, Iterator<Item<T>> existingItems)
           
 

Methods in org.apache.wicket.markup.repeater with parameters of type Item
 int Item.IndexComparator.compare(Item<?> lhs, Item<?> rhs)
           
 int Item.IndexComparator.compare(Item<?> lhs, Item<?> rhs)
           
protected abstract  void RefreshingView.populateItem(Item<T> item)
          Populate the given Item container.
 

Method parameters in org.apache.wicket.markup.repeater with type arguments of type Item
protected  void RefreshingView.addItems(Iterator<Item<T>> items)
          Add items to the view.
<T> Iterator<Item<T>>
ReuseIfModelsEqualStrategy.getItems(IItemFactory<T> factory, Iterator<IModel<T>> newModels, Iterator<Item<T>> existingItems)
           
<T> Iterator<Item<T>>
IItemReuseStrategy.getItems(IItemFactory<T> factory, Iterator<IModel<T>> newModels, Iterator<Item<T>> existingItems)
          Returns an iterator over items that will be added to the view.
<T> Iterator<Item<T>>
DefaultItemReuseStrategy.getItems(IItemFactory<T> factory, Iterator<IModel<T>> newModels, Iterator<Item<T>> existingItems)
           
 

Uses of Item in org.apache.wicket.markup.repeater.data
 

Methods in org.apache.wicket.markup.repeater.data that return Item
protected  Item<T> GridView.newEmptyItem(String id, int index)
          Create a Item which represents an empty cell (there is no model for it in the DataProvider)
protected  Item<?> GridView.newRowItem(String id, int index)
          Create a new Item which will hold a row.
 

Methods in org.apache.wicket.markup.repeater.data that return types with arguments of type Item
 Iterator<Item<T>> GridView.getItems()
           
 

Methods in org.apache.wicket.markup.repeater.data with parameters of type Item
protected abstract  void GridView.populateEmptyItem(Item<T> item)
          Add component to an Item for which there is no model anymore and is shown in a cell
 

Method parameters in org.apache.wicket.markup.repeater.data with type arguments of type Item
protected  void GridView.addItems(Iterator<Item<T>> items)
           
 



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