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

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

Introduction

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

Usage

From source file com.comcast.cdn.traffic_control.traffic_monitor.KeyValue.java

public class KeyValue extends Model<String> implements java.io.Serializable {
    private static final long serialVersionUID = 1L;
    final protected String key;
    protected final String val;
    protected final String stateId;

From source file com.comcast.cdn.traffic_control.traffic_monitor.StatisticModel.java

public class StatisticModel extends Model<String> implements java.io.Serializable {
    final private String key;

    public StatisticModel(final String key) {
        this.key = key;
    }

From source file com.doculibre.constellio.wicket.components.locale.LocalePropertyModel.java

@SuppressWarnings("serial")
public class LocalePropertyModel extends Model {

    private IModel labelledEntityModel;
    private String labelKey;
    private String propertyName;

From source file com.doculibre.constellio.wicket.models.EntityModel.java

@SuppressWarnings("serial")
public class EntityModel<T extends ConstellioEntity> extends Model {

    private ReloadableEntityModel<T> reloadableEntityModel;

    public EntityModel() {

From source file com.evolveum.midpoint.web.component.util.XmlGregorianCalendarModel.java

/**
 * @author lazyman
 */
public class XmlGregorianCalendarModel extends Model<Date> {

    private IModel<XMLGregorianCalendar> model;

From source file com.evolveum.midpoint.web.model.XmlGregorianCalendarModel.java

/**
 * @author lazyman
 */
public class XmlGregorianCalendarModel extends Model<Date> {

    private IModel<XMLGregorianCalendar> model;

From source file com.pushinginertia.wicket.core.form.model.RemoveCharactersModel.java

/**
 * A model that can be attached to a form input, which will strip a given list characters from the input entered by
 * the user. This wraps another model that represents the string that the form input will be assigned to.
 */
public class RemoveCharactersModel extends Model<String> {
    private static final long serialVersionUID = 1L;

From source file com.pushinginertia.wicket.core.form.model.TitleCaseModel.java

/**
 * A model that can be attached to a form input, which will convert the user's input into title case. This wraps another
 * model that represents the string that the form input will be assigned to.
 */
public class TitleCaseModel extends Model<String> {
    private static final long serialVersionUID = 1L;

From source file com.pushinginertia.wicket.core.model.replacement.ContentReplacementModel.java

/**
 * Mutates the text stored within a model by replacing it with something else. This is useful for instances such as
 * presentation of user-entered text where certain character sequences should be blocked or replaced with something else.
 * An example might be masking an email address or adding syntax highlighting to certain keywords.
 */
public class ContentReplacementModel extends Model<String> {

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

/**
 * A model sorts a {@link WebCellBasedView} and keeps the sort state. 
 * 
 * @author jblok
 */
public class SortableCellViewHeaderGroup extends Model implements IComponentAssignedModel {