Exemplo n.º 1
0
 private Formatter getDefaultFormatter(Class<?> type) {
   Formatter formatter = defaultFormaters.get(type);
   if (formatter == null) {
     formatter = formatterFactory.createDefaultFormatter(type);
   }
   return formatter;
 }