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

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

Introduction

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

Usage

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

/**
 *  @author shood
 * */
public class LookupPropertyModel<T> extends AbstractPropertyModel<T> {

    protected final String expression;

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

/**
 * @author shood
 *
 */
public class LookupPropertyModel<T> extends AbstractPropertyModel<T> {
    private static final long serialVersionUID = 1L;

From source file fr.openwide.core.wicket.more.model.BindingModel.java

/**
 * An improved and simplified version of the BindingModel implementation of
 * wicket-bindgen.
 * 
 * It is based on PropertyModel instead of using bindgen features because
 * bindgen behavior is not the same as Wicket one. Typically, when an

From source file org.cast.cwm.data.models.PeriodDisplayNameModel.java

/**
 * Model that displays an appropriate designator for a Period depending on the role of the logged-in User.
 *
 * Researchers and administrators should get anonymized views without actual period names displayed,
 * while the teachers and students should see the real name.
 */

From source file org.cast.cwm.data.models.SiteDisplayNameModel.java

/**
 * Model that displays an appropriate designator for a Site depending on the role of the logged-in User.
 *
 * Researchers and administrators should get anonymized views without actual site names displayed,
 * while the teachers and students should see the real name.
 */

From source file org.cast.cwm.data.models.UserDisplayNameModel.java

/**
 * Model that displays an appropriate designator for a User depending on the role of the logged-in User.
 *
 * Researchers and administrators should get anonymized views without subjects' real names displayed,
 * while the teachers and students should see real names or usernames.
 */