Example usage for org.apache.wicket.model.util GenericBaseModel subclass-usage

List of usage examples for org.apache.wicket.model.util GenericBaseModel subclass-usage

Introduction

In this page you can find the example usage for org.apache.wicket.model.util GenericBaseModel subclass-usage.

Usage

From source file org.apache.oodt.cas.webcomponents.filemgr.model.ProductModel.java

/**
 * 
 * A {@link Serializable} {@link GenericBaseModel} version of a CAS
 * {@link Product}.
 * 
 * @author mattmann

From source file org.berlin.wicket.components.LoadableDetachableList.java

/**
 * LoadableDetachableModel holds a temporary, transient model object, that is
 * set when {@link #getObject(Component)} is called by calling abstract method
 * 'load', and that will be reset/ set to null on {@link #detach()}.
 *  
 * This version of the loadable detachable list works with the non serializable list object.

From source file org.cyclop.web.common.ImmutableListModel.java

/** @author Maciej Miklas */
public class ImmutableListModel<T> extends GenericBaseModel<ImmutableList<? extends T>> {

    private final List<ModelChangeListener<T>> listeners = new ArrayList<>();

    public ImmutableListModel() {

From source file org.cyclop.web.common.TextModel.java

/** @author Maciej Miklas */
public final class TextModel extends GenericBaseModel<String> {

    @Override
    protected String createSerializableVersionOf(String object) {
        return object;