All Downloads are FREE. Search and download functionalities are using the official Maven repository.

humanize.icu.spi.context.ICUContextFactory Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
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();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy