Example usage for com.google.gwt.text.shared Parser interface-usage

List of usage examples for com.google.gwt.text.shared Parser interface-usage

Introduction

In this page you can find the example usage for com.google.gwt.text.shared Parser interface-usage.

Usage

From source file com.dianaui.universal.core.client.text.DateTimeFormatParser.java

/**
 * A localized parser based on {@link DateTimeFormat.PredefinedFormat#DATE_SHORT}.
 *
 * @author <a href='mailto:donbeave@gmail.com'>Alexey Zhokhov</a>
 */
public class DateTimeFormatParser implements Parser<Date> {

From source file com.google.gwt.text.shared.testing.PassthroughParser.java

/**
 * A no-op String parser.
 */
public class PassthroughParser implements Parser<String> {

    private static PassthroughParser INSTANCE;

From source file com.sencha.gxt.widget.core.client.form.PropertyEditor.java

/**
 * Abstract base class for property editors. Property editors are generally
 * responsible for string / value conversion and other operations.
 * 
 * @param <T> the field's data type
 */

From source file com.tasktop.c2c.server.common.web.client.widgets.time.TimePeriodParser.java

/**
 * @author cmorgan (Tasktop Technologies Inc.)
 * 
 */
public class TimePeriodParser implements Parser<BigDecimal> {

From source file de.swm.commons.mobile.client.widgets.date.DateTimeParser.java

/**
 * Implements regarding to googles parser system for a date parser.
 */
public class DateTimeParser implements Parser<Date> {

    final DateTimeFormat format;

From source file edu.colorado.csdms.wmt.client.ui.cell.DoubleCellParser.java

/**
 * A localized parser based on {@link NumberFormat#getDecimalFormat}.
 */
public class DoubleCellParser implements Parser<Double> {

    private static DoubleCellParser INSTANCE;

From source file fr.putnami.pwt.core.widget.client.helper.BigDecimalParser.java

public final class BigDecimalParser implements Parser<BigDecimal> {
    private static BigDecimalParser instance;

    private BigDecimalParser() {
    }

From source file fr.putnami.pwt.core.widget.client.helper.BigIntegerParser.java

public final class BigIntegerParser implements Parser<BigInteger> {
    private static BigIntegerParser instance;

    private BigIntegerParser() {
    }

From source file fr.putnami.pwt.core.widget.client.helper.DateParser.java

public final class DateParser implements Parser<Date> {

    private static DateParser instance;

    private final DateTimeFormat formater;

From source file fr.putnami.pwt.core.widget.client.helper.FloatParser.java

public final class FloatParser implements Parser<Float> {
    private static FloatParser instance;

    private FloatParser() {
    }