humanize.icu.spi.context.ICUContextFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of humanize-icu Show documentation
Show all versions of humanize-icu Show documentation
International Components for Unicode support
package humanize.icu.spi.context;
import humanize.spi.context.Context;
import humanize.spi.context.ContextFactory;
/**
* Default implementation of {@link ContextFactory}. Creates
* {@link DefaultICUContext} instances.
*
* @author michaux
*
*/
public class ICUContextFactory implements ContextFactory
{
@Override
public Context createContext()
{
return new DefaultICUContext();
}
}