List of usage examples for org.apache.wicket.model AbstractReadOnlyModel subclass-usage
From source file jp.xet.uncommons.wicket.model.SingleSelectModel.java
/**
* TODO for daisuke
*
* @param <T> ??
* @since 1.0
* @version $Id$
From source file name.martingeisse.trading_game.gui.util.DependencyListModel.java
/**
* Model for a dependency list.
* <p>
* This model requires a comparator to determine the list order. If
* no comparator is specified, it will use a default comparator that
* sorts by implementation class, but will fail with an exception if
From source file name.martingeisse.trading_game.gui.util.DependencySetModel.java
/** * Model for a dependency set. * * @param <T> the dependency type */ public class DependencySetModel<T> extends AbstractReadOnlyModel<Set<T>> {
From source file name.martingeisse.wicket.helpers.FuturePollModel.java
/**
* A model that will return the value from a {@link Future}, or null if
* the future has not finished yet or has failed.
*
* @param <T> the model type, which is also the type returned by the future
*/
From source file name.martingeisse.wicket.model.ClassDisplayNameModel.java
/**
* This is a read-only model that wraps an inner model which returns either a string
* (a class name) or a class object. This model then returns a display name for
* that class, which is:
* - null if the inner model returns null
* - the inner model value if the inner model returns an unknown class name
From source file name.martingeisse.wicket.model.FuturePollModel.java
/**
* A model that will return the value from a {@link Future}, or null if
* the future has not finished yet or has failed.
*
* @param <T> the model type, which is also the type returned by the future
*/
From source file name.martingeisse.wicket.util.AbstractReadOnlyTransformationModel.java
/**
* A read-only model that wraps another model and transforms the
* value returned by reading from that model.
* @param <T> the model type of this model
* @param <W> the model type of the wrapped model
*/
From source file net.dontdrinkandroot.wicket.model.IntegerRangeListModel.java
/**
* A readonly List Model that contains all Integers between the given min and max value, min and max
* included.
*
* @author Philip W. Sorst <philip@sorst.net>
*
From source file net.thecodersbreakfast.wicket.enums.model.EnumModel.java
/** * @param <T> Type of the Enum * @author Olivier Croisier */ public class EnumModel<T extends Enum<T>> extends AbstractReadOnlyModel<String> {
From source file ontopoly.models.HelpLinkResourceModel.java
public class HelpLinkResourceModel extends AbstractReadOnlyModel<String> { private String resourceKey; public HelpLinkResourceModel(String resourceKey) { this.resourceKey = resourceKey;