Example usage for org.apache.wicket IGenericComponent interface-usage

List of usage examples for org.apache.wicket IGenericComponent interface-usage

Introduction

In this page you can find the example usage for org.apache.wicket IGenericComponent interface-usage.

Usage

From source file com.conwax.ajax.SimpleAjaxLink.java

public abstract class SimpleAjaxLink<T> extends AbstractLink implements ISimpleAjaxLink, IGenericComponent<T> {
    private static final long serialVersionUID = 1L;

    public SimpleAjaxLink(String id) {
        super(id);
    }

From source file com.googlecode.wicket.kendo.ui.datatable.DataTable.java

/**
 * Provides a Kendo UI data-table
 *
 * @param <T> the model object type
 * @author Sebastien Briquet - sebfz1
 */

From source file com.googlecode.wicket.kendo.ui.panel.KendoFeedbackPanel.java

/**
 * Provides a {@link FeedbackPanel} customized with the Kendo UI theme
 *
 * @author Sebastien Briquet - sebfz1
 *
 */

From source file com.premiumminds.webapp.wicket.bootstrap.BootstrapDatepicker.java

/**
 * Bootstrap Datepicker for Wicket.
 *
 * @author acamilo
 * @see <a href="https://github.com/eternicode/bootstrap-datepicker">https://github.com/eternicode/bootstrap-datepicker</a>
 */

From source file com.premiumminds.webapp.wicket.bootstrap.BootstrapPaginator.java

/**
 * This component creates a paginator component using the bootstrap pagination element.
 * 
 * <p>
 * Example:
 * 

From source file com.premiumminds.webapp.wicket.FormatLabel.java

public class FormatLabel<T> extends Label implements IGenericComponent<T> {
    private static final long serialVersionUID = 9039206115545313591L;

    public FormatLabel(String id, IModel<T> model) {
        super(id, model);
    }

From source file com.premiumminds.webapp.wicket.repeaters.ListSetItem.java

/**
 * Container that holds components in a {@link AjaxListSetView}.
 * 
 * @see AjaxListSetView
 * @author acamilo
 *

From source file com.premiumminds.wicket.crudifier.view.CrudifierView.java

public class CrudifierView<T> extends Panel implements IGenericComponent<T> {
    private static final long serialVersionUID = -151637566983702881L;

    private CrudifierEntitySettings entitySettings = new CrudifierEntitySettings();
    private Map<Class<?>, IObjectRenderer<?>> renderers = new HashMap<Class<?>, IObjectRenderer<?>>();

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

public class NotificationPanel extends Panel implements IFeedback, IGenericComponent<List<FeedbackMessage>> {

    private static final long serialVersionUID = 5895940553202128621L;

    private final Notification notification;

From source file org.brixcms.web.generic.BrixGenericFragment.java

public class BrixGenericFragment<T> extends Fragment implements IGenericComponent<T> {
    public BrixGenericFragment(String id, String markupId, MarkupContainer markupProvider) {
        super(id, markupId, markupProvider);
    }

    public BrixGenericFragment(String id, String markupId, MarkupContainer markupProvider, IModel<T> model) {