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

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

Introduction

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

Usage

From source file org.cdlflex.ui.model.ButtonCssClassNameModel.java

/**
 * Concatenates Type and Size css class names and any others required for rendering bootstrap buttons by Type and Size.
 * Using {@link Type#NONE} will cause no css classes to be returned.
 */
public class ButtonCssClassNameModel extends AbstractReadOnlyModel<String> {

From source file org.cdlflex.ui.model.PropertyConvertingModel.java

/**
 * A read-only Model that converts the object of the given property model into something else (e.g. extract a value).
 * 
 * @param <T> The type of the property model
 * @param <C> The target type of the conversion
 */

From source file org.dcm4chee.web.common.model.ElapsedTimeModel.java

/**
 * @author Franz Willer <franz.willer@gmail.com>
 * @version $Revision$ $Date$
 * @param <E>
 * @since Jun 15, 2010
 */

From source file org.dcm4chee.web.common.model.MultiResourceModel.java

/**
 * @author Franz Willer <franz.willer@gmail.com>
 * @version $Revision$ $Date$
 * @param <E>
 * @since Sep 07, 2011
 */

From source file org.devgateway.toolkit.forms.models.ViewModeConverterModel.java

/**
 * @author mpostelnicu Converter for {@link GenericBootstrapFormComponent}
 *         viewModeField This will be used when
 *         {@link WebConstants#PARAM_VIEW_MODE} is true in the browser and will
 *         convert the model object to something printable (string-like)
 */

From source file org.devproof.portal.core.module.common.component.ProgressionModel.java

/**
 * Typed model that returns the current progress for the ProgressBar component.
 *
 * @author Christopher Hlubek (hlubek) comment Carsten Hufe: nothing modified
 */
public abstract class ProgressionModel extends AbstractReadOnlyModel<Progression> {

From source file org.devproof.portal.core.module.common.model.ShortenModel.java

/**
 * Shortens a string and appends ...
 *
 * @author Carsten Hufe
 */
public class ShortenModel extends AbstractReadOnlyModel<String> {

From source file org.hippoecm.frontend.model.ReadOnlyModel.java

/**
 * Read-only Wicket model that accepts a lambda function to return the object.
 */
public final class ReadOnlyModel<T> extends AbstractReadOnlyModel<T> {

    private final SerializableSupplier<T> supplier;

From source file org.hippoecm.frontend.plugins.cms.browse.model.BrowserSectionsModel.java

public class BrowserSectionsModel extends AbstractReadOnlyModel<BrowserSections>
        implements IObservable, IChangeListener {

    private static final long serialVersionUID = 1L;

    private IObservationContext obContext;

From source file org.jabox.webapp.utils.EvenOddRow.java

public class EvenOddRow<T> extends AbstractReadOnlyModel<String> {
    private static final long serialVersionUID = 1L;

    private final ListItem<T> _listItem;

    public EvenOddRow(final ListItem<T> listItem) {