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

humanize.spi.context.DefaultContextFactory Maven / Gradle / Ivy

The newest version!
package humanize.spi.context;

/**
 * Default implementation of {@link ContextFactory}. Creates
 * {@link DefaultContext} instances.
 * 
 * @author michaux
 * 
 */
public class DefaultContextFactory implements ContextFactory
{

    @Override
    public Context createContext()
    {

        return new DefaultContext();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy