Example usage for org.apache.wicket.model IComponentInheritedModel interface-usage

List of usage examples for org.apache.wicket.model IComponentInheritedModel interface-usage

Introduction

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

Usage

From source file com.servoy.j2db.server.headlessclient.dataui.RecordItemModel.java

/**
 * A model that holds 1 {@link IRecord}.
 *
 * @author jcompagner
 */
public abstract class RecordItemModel extends LoadableDetachableModel implements IComponentInheritedModel {

From source file org.eknet.wicket.commons.textstore.TextNodeModel.java

/**
 * Loadable model for {@link TextNode}s. It needs a {@link TextNodeStore} to work, which is 
 * supplied via the {@link IModel} interface. Usually (if some sort of DI is used), you can
 * implement this like the follwoing:
 * <pre>
 *   public class TextNodeStoreModel extends AbstractReadOnlyModel&lt;TextNodeStore&gt; {

From source file sf.wicklet.ext.model.InheritablePropertyModel.java

public class InheritablePropertyModel<P extends IProperty<?>, V extends IPropertyProvider>
        implements IComponentInheritedModel<V> {

    private static final long serialVersionUID = 1L;

    private V provider;