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

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

Introduction

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

Usage

From source file com.googlecode.wicketwebbeans.model.BeanPropertyModel.java

/**
 * An extension of PropertyModel so that we can get the backing bean and check for
 * modifications. We only set the bean property if the value from the form has changed with respect
 * to the value that was retrieved from the model when the form was rendered. 
 * This is important because setting one property on a bean via this model may cause other properties to be
 * set indirectly. Wicket dumps the whole form back every time and we do not want to wipe out those

From source file com.userweave.components.model.LocalizedPropertyModel.java

/**
 * Model to wrap a localized string, which is part of
 * an entity.
 * 
 * @author opr
 */

From source file cz.zcu.kiv.eegdatabase.wui.components.model.DefaultValuePropertyModel.java

/**
 * Implementation of wicket model with default value. If model is null then return default value.
 * 
 * @author Jakub Rinkes
 * 
 * @param <T>

From source file jp.xet.uncommons.wicket.model.AbbreviateStringPropertyModel.java

/**
 * TODO for daisuke
 * 
 * @since 1.0
 * @version $Id$
 * @author daisuke

From source file net.ftlines.metagen.wicket.MetaModel.java

/**
 * Uses binder's metamodel to build refactor-safe property expressions.
 * 
 * Here is an example of retrieving user's first name from the user object:
 * 
 * <pre>

From source file net.thecodersbreakfast.wicket.enums.model.EnumPropertyModel.java

/**
 * PropertyModel that operates on an Enum and provides its internationalized
 * representation.
 *
 * @param <T> The model type
 * @author Olivier Croisier

From source file org.apache.syncope.client.console.panels.search.MapOfListModel.java

public class MapOfListModel<T> extends PropertyModel<List<T>> {

    private static final long serialVersionUID = -7647997536634092231L;

    private final String key;

From source file org.geoserver.web.wicket.model.ExtPropertyModel.java

/**
 * Extension of property model.
 * Additional support for:
 *      - read-only properties (particularly for disabled fields, otherwise a null is sent despite content)
 * 
 * @author Niels Charlier

From source file org.hippoecm.frontend.model.event.ObservablePropertyModel.java

/**
 * A property model that observes an observable target.
 */
public class ObservablePropertyModel<T> extends PropertyModel<T> implements IObservableModel<T> {

    private final Observable observable;

From source file org.onexus.website.api.widgets.selection.TextFormaterPropertyModel.java

public class TextFormaterPropertyModel extends PropertyModel<String> {

    private int maxLength;
    private boolean addDots;

    public TextFormaterPropertyModel(Object modelObject, String expression, final int maxLength,