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

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

Introduction

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

Usage

From source file name.martingeisse.admin.navigation.component.NavigationMenuView.java

/**
 * This component uses a list model of element type {@link NavigationNode}
 * and shows links for all nodes. It does not have its own markup
 * but is attached to a container element in the markup of outer components.
 * 
 * This component expects two nested component elements inside its markup; the

From source file net.rrm.ehour.ui.timesheet.panel.TimesheetRowList.java

/**
 * Representation of a timesheet row
 */

public class TimesheetRowList extends ListView<TimesheetRow> {
    private static final long serialVersionUID = -6905022018110510887L;

From source file nl.knaw.dans.common.wicket.components.SeparatedListView.java

/**
 * <p>
 * Where {@link ListView<T>} rather works with a TABLE, UL or OL, this repeater uses a prefix as
 * separator. The first occurrence of the prefix is not rendered. Though the repeater is not restricted
 * to links, a typical example would be:
 * </p>

From source file org.apache.isis.viewer.wicket.ui.components.about.JarManifestListView.java

public final class JarManifestListView extends ListView<JarManifestAttributes> {

    private static final long serialVersionUID = 1L;
    private final String idLine;

    public JarManifestListView(String id, String idLine, List<? extends JarManifestAttributes> list) {

From source file org.apache.isis.viewer.wicket.ui.errors.StackTraceListView.java

public final class StackTraceListView extends ListView<StackTraceDetail> {

    private static final long serialVersionUID = 1L;
    private final String idLine;

    public StackTraceListView(String id, String idLine,

From source file org.apache.karaf.webconsole.cxf.internal.services.InterceptorView.java

/**
 * List of interceptors.
 */
public class InterceptorView extends ListView<Interceptor<?>> {

    private static final long serialVersionUID = 1L;

From source file org.apache.syncope.client.console.panels.SearchView.java

public class SearchView extends ListView<SearchClause> {

    private static final long serialVersionUID = -527351923968737757L;

    private final WebMarkupContainer searchFormContainer;

From source file org.apache.syncope.client.console.wicket.markup.html.list.AltListView.java

public abstract class AltListView<T> extends ListView<T> {

    private static final long serialVersionUID = 251378224847354710L;

    public AltListView(final String id) {
        super(id);

From source file org.apache.syncope.client.console.wicket.markup.html.list.ConnConfPropertyListView.java

public class ConnConfPropertyListView extends ListView<ConnConfProperty> {

    private static final long serialVersionUID = -5239334900329150316L;

    private static final Logger LOG = LoggerFactory.getLogger(ConnConfPropertyListView.class);

From source file org.apache.syncope.console.markup.html.list.AltListView.java

public abstract class AltListView<T> extends ListView<T> {

    private static final long serialVersionUID = 251378224847354710L;

    public AltListView(final String id) {
        super(id);