Interface IItemFactory<T>
-
- Type Parameters:
T
- Model object type
public interface IItemFactory<T>
Factory interface for creating new child item containers for AbstractPageableView.- Author:
- Igor Vaynberg (ivaynberg)
- See Also:
AbstractPageableView
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Item<T>
newItem(int index, IModel<T> model)
Factory method for instances of Item.
-