Uses of Class
org.apache.wicket.markup.repeater.Item
-
Packages that use Item Package Description org.apache.wicket.markup.repeater org.apache.wicket.markup.repeater.data -
-
Uses of Item in org.apache.wicket.markup.repeater
Subclasses of Item in org.apache.wicket.markup.repeater Modifier and Type Class Description classOddEvenItem<T>Item that sets class="even" or class="odd" attributes based on its indexMethods in org.apache.wicket.markup.repeater that return Item Modifier and Type Method Description Item<T>IItemFactory. newItem(int index, IModel<T> model)Factory method for instances of Item.protected Item<T>RefreshingView. newItem(java.lang.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 Modifier and Type Method Description static java.util.Comparator<Item<?>>Item.IndexComparator. getInstance()<T> java.util.Iterator<Item<T>>DefaultItemReuseStrategy. getItems(IItemFactory<T> factory, java.util.Iterator<IModel<T>> newModels, java.util.Iterator<Item<T>> existingItems)<T> java.util.Iterator<Item<T>>IItemReuseStrategy. getItems(IItemFactory<T> factory, java.util.Iterator<IModel<T>> newModels, java.util.Iterator<Item<T>> existingItems)Returns an iterator over items that will be added to the view.java.util.Iterator<Item<T>>RefreshingView. getItems()<T> java.util.Iterator<Item<T>>ReuseIfModelsEqualStrategy. getItems(IItemFactory<T> factory, java.util.Iterator<IModel<T>> newModels, java.util.Iterator<Item<T>> existingItems)Methods in org.apache.wicket.markup.repeater with parameters of type Item Modifier and Type Method Description intItem.IndexComparator. compare(Item<?> lhs, Item<?> rhs)protected abstract voidRefreshingView. populateItem(Item<T> item)Populate the given Item container.Method parameters in org.apache.wicket.markup.repeater with type arguments of type Item Modifier and Type Method Description protected voidRefreshingView. addItems(java.util.Iterator<Item<T>> items)Add items to the view. -
Uses of Item in org.apache.wicket.markup.repeater.data
Methods in org.apache.wicket.markup.repeater.data that return Item Modifier and Type Method Description protected Item<T>GridView. newEmptyItem(java.lang.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(java.lang.String id, int index)Create a new Item which will hold a row.Item<T>GridView.ItemsIterator. next()Methods in org.apache.wicket.markup.repeater.data that return types with arguments of type Item Modifier and Type Method Description java.util.Iterator<Item<T>>GridView. getItems()Methods in org.apache.wicket.markup.repeater.data with parameters of type Item Modifier and Type Method Description protected abstract voidGridView. populateEmptyItem(Item<T> item)Add component to an Item for which there is no model anymore and is shown in a cellMethod parameters in org.apache.wicket.markup.repeater.data with type arguments of type Item Modifier and Type Method Description protected voidGridView. addItems(java.util.Iterator<Item<T>> items)
-