Example usage for org.springframework.format.support DefaultFormattingConversionService addFormatter

List of usage examples for org.springframework.format.support DefaultFormattingConversionService addFormatter

Introduction

In this page you can find the example usage for org.springframework.format.support DefaultFormattingConversionService addFormatter.

Prototype

@Override
    public void addFormatter(Formatter<?> formatter) 

Source Link

Usage

From source file:uk.co.blackpepper.support.retrofit.jsoup.spring.AbstractBeanHtmlConverterTest.java

private static ConversionService newConversionService(Formatter<?> formatter) {
    DefaultFormattingConversionService conversionService = new DefaultFormattingConversionService();
    conversionService.addFormatter(formatter);
    return conversionService;
}