Example usage for com.google.gwt.i18n.client.impl LocaleInfoImpl LocaleInfoImpl

List of usage examples for com.google.gwt.i18n.client.impl LocaleInfoImpl LocaleInfoImpl

Introduction

In this page you can find the example usage for com.google.gwt.i18n.client.impl LocaleInfoImpl LocaleInfoImpl.

Prototype

LocaleInfoImpl

Source Link

Usage

From source file:org.wisepersist.gwtmockito.ng.fakes.FakeLocaleInfoImplProvider.java

License:Apache License

@Override
public final LocaleInfoImpl getFake(final Class<?> type) {
    return new LocaleInfoImpl() {
        @Override//from  w ww  .  j av a  2s.co m
        public DateTimeFormatInfo getDateTimeFormatInfo() {
            return new DefaultDateTimeFormatInfo();
        }
    };
}