Example usage for org.apache.wicket.util.convert.converter AbstractConverter subclass-usage

List of usage examples for org.apache.wicket.util.convert.converter AbstractConverter subclass-usage

Introduction

In this page you can find the example usage for org.apache.wicket.util.convert.converter AbstractConverter subclass-usage.

Usage

From source file com.evolveum.midpoint.web.component.search.DisplayableRenderer.java

/**
 * @author Viliam Repan (lazyman)
 */
public class DisplayableRenderer<T extends Serializable> extends AbstractConverter<DisplayableValue>
        implements IChoiceRenderer<DisplayableValue<T>> {

From source file com.googlecode.wicket.jquery.core.utils.convert.CurrencyConverter.java

/**
 * Provides a base class for converting currency numbers to {@link Object}
 *
 * @param <N> The number object type
 * @author Sebastien Briquet - sebfz1
 *

From source file com.myamamoto.wicket.misc.convert.converter.BooleanConverter.java

public class BooleanConverter extends AbstractConverter<Boolean> {
    private final String trueString;
    private final String falseString;

    public BooleanConverter(String trueString) {
        this(trueString, "");

From source file com.pushinginertia.wicket.core.converter.TextFieldTitleCaseConverter.java

/**
 * A converter that fixes the case entered by a user.
 */
public class TextFieldTitleCaseConverter extends AbstractConverter<String> {
    private static final long serialVersionUID = 1L;
    private static final Logger LOG = LoggerFactory.getLogger(TextFieldTitleCaseConverter.class);

From source file fr.openwide.core.wicket.more.markup.html.basic.GenericListItemConverter.java

class GenericListItemConverter extends AbstractConverter<GenericListItem<?>> {

    private static final long serialVersionUID = -6934415690685574154L;

    private Binding<String> binding;

From source file gr.abiss.calipso.wicket.components.formfields.AssetConverter.java

/**
 * Converts Assets to something presentable to the user
 * @see gr.abiss.calipso.util.HumanTime
 */
public class AssetConverter extends AbstractConverter {
    private static final long serialVersionUID = 1L;

From source file gr.abiss.calipso.wicket.components.formfields.CustomAttributeLookupValueConverter.java

/**
 * Converts from Object to CustomAttributeLookupValue.
 */
public class CustomAttributeLookupValueConverter extends AbstractConverter<CustomAttributeLookupValue> {
    private static final long serialVersionUID = 1L;

From source file gr.abiss.calipso.wicket.components.formfields.HumanTimeDurationConverter.java

/**
 * Converts HumanTime strings like "2d 5h" to milliseconds (Long) and back
 * @see gr.abiss.calipso.util.HumanTime
 */
public class HumanTimeDurationConverter extends AbstractConverter {
    private static final long serialVersionUID = 1L;

From source file jp.xet.baseunits.wicket.CalendarDateConverter.java

/**
 * Converts from Object to {@link CalendarDate}.
 * 
 * @author daisuke
 * @since 2.0
 */

From source file jp.xet.baseunits.wicket.CalendarMonthConverter.java

/**
 * Converts from Object to {@link CalendarMonth}.
 * 
 * @author daisuke
 * @since 2.1
 */