Example usage for org.apache.wicket.model AbstractReadOnlyModel subclass-usage

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

Introduction

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

Usage

From source file org.wicketstuff.minis.model.ReplacingResourceModel.java

/**
 * The ReplacingResourceModel is used to replaced other keys marked up like ${key} with their
 * corresponding values in the given key.The replacing mechanism also uses the default way to get
 * the localized String.<br>
 * <br>
 * 

From source file org.wicketstuff.minis.util.FutureModel.java

/**
 * A read-only model implementation that retrieves the model object from a {@link Future} object.
 * This is useful when retrieving data from slow back-ends asynchronously before the synchronous
 * rendering of the Wicket components happens.
 * 
 * @author <a href="http://sebthom.de/">Sebastian Thomschke</a>

From source file org.wicketstuff.progressbar.ProgressionModel.java

/**
 * Typed model that returns the current progress for the ProgressBar component.
 * 
 * @author Christopher Hlubek (hlubek)
 * 
 */

From source file org.wicketstuff.shiro.ShiroSubjectModel.java

/**
 * A simple wrapper for to access {@link SecurityUtils#getSubject()} as an {@link IModel}
 */
public class ShiroSubjectModel extends AbstractReadOnlyModel<Subject> {
    private static final long serialVersionUID = 1L;

From source file ro.nextreports.server.web.common.model.LabelReadOnlyModel.java

public class LabelReadOnlyModel extends AbstractReadOnlyModel {

    private static final long serialVersionUID = 1830977210524525546L;

    private final String name;

From source file ro.nextreports.server.web.common.model.TextReadOnlyModel.java

/**
 * @author Decebal Suiu
 */
public class TextReadOnlyModel extends AbstractReadOnlyModel<String> {

    private final String text;