Example usage for org.apache.wicket.markup.html.list Loop subclass-usage

List of usage examples for org.apache.wicket.markup.html.list Loop subclass-usage

Introduction

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

Usage

From source file fiftyfive.wicket.prototype.RawMarkupLoop.java

/**
 * Repeats a section of raw markup N times. This is identical to Wicket's
 * built-in {@link Loop} component, except you do not have to provide a
 * boilerplate implementation of {@code populateItem()}. This is useful for
 * very quickly simulating a large number of repeated items in an HTML mockup
 * before real data and Wicket components have been wired up.

From source file guru.mmp.application.web.template.components.PagingNavigation.java

/**
 * The <code>PagingNavigation</code> class provides a Wicket component that provides the
 * navigation for a <code>PageableListView</code> that holds links to other pages of the
 * <code>PageableListView</code>.
 *
 * @author Marcus Portmann

From source file name.martingeisse.wicket.util.zebra.ZebraLoop.java

/**
 * A {@link Loop} that supports "Zebra Striping" by setting the
 * CSS classes "even" / "odd" on its items. CSS styles themselves
 * are not set by this class.
 */
public abstract class ZebraLoop extends Loop {