Example usage for org.apache.wicket.model IModel interface-usage

List of usage examples for org.apache.wicket.model IModel interface-usage

Introduction

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

Usage

From source file ar.com.zauber.commons.wicket.model.DynamicDetachableModel.java

/**
 * Modelo detachable parecido a LoadableDetachableModel. La diferencia es que este
 * soporta setObject(). Para ello las subclases probablemente necesiten sobreescribir
 * afterSetObject(), momento de guardar la informacin del nuevo objeto seteado
 * necesaria para poder recuperarlo luego del detach.
 * 

From source file au.org.theark.arkcalendar.component.dataentry.StringDateModel.java

/**
 * Use this class to chain from a Date model to an underlying String model
 * @author elam
 *
 */
public class StringDateModel implements IModel<Date> {

From source file au.org.theark.core.web.component.customfield.dataentry.StringDateModel.java

/**
 * Use this class to chain from a Date model to an underlying String model
 * @author elam
 *
 */
public class StringDateModel implements IModel<Date> {

From source file com.evolveum.midpoint.gui.api.model.DisplayNameModel.java

/**
 * 
 * TODO: refactor for lazy loading
 * 
 * @author semancik
 */

From source file com.evolveum.midpoint.gui.api.model.LoadableModel.java

/**
 * Lazy loading Wicket model. This is an IModel implementation
 * that loads the model content only when needed. This is supposed
 * to be used for objects that are expensive to load. So we can avoid
 * loading the at all when a component that uses them is not visible.
 * 

From source file com.evolveum.midpoint.gui.api.model.NonEmptyModel.java

/**
 * @author mederly
 */
public interface NonEmptyModel<T> extends IModel<T> {

    @Override

From source file com.evolveum.midpoint.gui.api.model.ReadOnlyEnumValuesModel.java

/**
 * EXPERIMENTAL
 *
 * @author mederly
 */
public class ReadOnlyEnumValuesModel<E extends Enum<E>> implements IModel<List<E>> {

From source file com.evolveum.midpoint.gui.api.model.ReadOnlyModel.java

/**
 * @author mederly
 */
public class ReadOnlyModel<T> implements IModel<T> {

    @NotNull

From source file com.evolveum.midpoint.gui.api.model.ReadOnlyValueModel.java

/**
 * EXPERIMENTAL
 * TODO better name
 *
 * @author mederly
 */

From source file com.evolveum.midpoint.gui.impl.model.FlexibleLabelModel.java

/**
 * Model that returns string value for a flexible label. The label value defaults to
 * the value of a fixed property. But if an expression is specified then the value
 * is determined by the expression.
 * This implementation works on containerable models (not wrappers).
 *