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.obiba.onyx.quartz.core.wicket.model.QuestionnaireStringModifierModel.java

/**
 * 
 */
public class QuestionnaireStringModifierModel extends AbstractReadOnlyModel<String> {

    private static final long serialVersionUID = 1L;

From source file org.obiba.onyx.wicket.model.MagmaStringResourceModel.java

/**
 * A string resource model to resolved magma variables references in strings. Example of string that will be resolved:
 * 
 * <pre>
 *   You must select the $('ContraIndications:ArmSideChosen') Arm to measure the blood pressure.
 * </pre>

From source file org.opensingular.lib.wicket.util.model.FallbackReadOnlyModel.java

@SuppressWarnings("serial")
public class FallbackReadOnlyModel<T> extends AbstractReadOnlyModel<T> {

    private final IModel<T>[] models;

    @SafeVarargs

From source file org.patientview.radar.web.models.PageNumberModel.java

/**
 * this model is used for displaying page numbers on pages
 * it is abstract so the getObject method has to be defined by implementations
 */

public abstract class PageNumberModel extends AbstractReadOnlyModel<String> {

From source file org.smallmind.wicket.model.FormattedResourceModel.java

public class FormattedResourceModel extends AbstractReadOnlyModel {

    private Component component;
    private Object[] args;
    private String key;

From source file org.smallmind.wicket.model.freemarker.FreeMarkerModel.java

public class FreeMarkerModel extends AbstractReadOnlyModel<String> {

    private static final Configuration FREEMARKER_CONF;

    public Template template;
    public Map<String, Object> rootMap;

From source file org.smallmind.wicket.model.freemarker.TextTemplateModel.java

public class TextTemplateModel extends AbstractReadOnlyModel<String> {

    private TextTemplate textTemplate;
    private Map<String, Object> variables;

    public TextTemplateModel(TextTemplate textTemplate, Map<String, Object> variables) {

From source file org.smallmind.wicket.model.VisibilityModel.java

public abstract class VisibilityModel extends AbstractReadOnlyModel {

    public abstract boolean isVisible();

    public Object getObject() {

From source file org.wicketopia.model.label.PluralizedModel.java

/**
 * @since 1.0
 */
public class PluralizedModel extends AbstractReadOnlyModel<String> {
    //----------------------------------------------------------------------------------------------------------------------
    // Fields

From source file org.wicketstuff.minis.model.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>