Example usage for org.apache.wicket.markup.html.list ListItemModel ListItemModel

List of usage examples for org.apache.wicket.markup.html.list ListItemModel ListItemModel

Introduction

In this page you can find the example usage for org.apache.wicket.markup.html.list ListItemModel ListItemModel.

Prototype

public ListItemModel(final ListView<T> listView, final int index) 

Source Link

Document

Construct

Usage

From source file:org.wicketopia.layout.list.BeanListLayoutPanel.java

License:Apache License

protected IModel<T> getListItemModel(IModel<? extends List<? extends T>> model, int index) {
    return new ListItemModel<T>(listView, index);
}