com.ibm.icu.impl.duration.PeriodFormatterService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-client-compiler-deps Show documentation
Show all versions of vaadin-client-compiler-deps Show documentation
Vaadin is a web application framework for Rich Internet Applications (RIA).
Vaadin enables easy development and maintenance of fast and
secure rich web
applications with a stunning look and feel and a wide browser support.
It features a server-side architecture with the majority of the logic
running
on the server. Ajax technology is used at the browser-side to ensure a
rich
and interactive user experience.
/*
******************************************************************************
* Copyright (C) 2007-2009, International Business Machines Corporation and *
* others. All Rights Reserved. *
******************************************************************************
*/
package com.ibm.icu.impl.duration;
import java.util.Collection;
/**
* Provider of Factory instances for building PeriodBuilders, PeriodFormatters,
* and DurationFormatters.
*/
public interface PeriodFormatterService {
/**
* Creates a new factory for creating DurationFormatters.
*
* @return a new DurationFormatterFactory.
*/
DurationFormatterFactory newDurationFormatterFactory();
/**
* Creates a new factory for creating PeriodFormatters.
*
* @return a new PeriodFormatterFactory
*/
PeriodFormatterFactory newPeriodFormatterFactory();
/**
* Creates a new factory for creating PeriodBuilders.
*
* @return a new PeriodBuilderFactory
*/
PeriodBuilderFactory newPeriodBuilderFactory();
/**
* Return the names of locales supported by factories produced by this
* service.
*
* @return a collection of String (locale names)
*/
Collection getAvailableLocaleNames();
}