Open Source Repository

Home /spring/spring-context-3.0.5 | Repository Home



org/springframework/format/FormatterRegistry.java
/*
 * Copyright 2002-2009 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.format;

import java.lang.annotation.Annotation;

import org.springframework.core.convert.converter.ConverterRegistry;

/**
 * A registry of field formatting logic.
 *
 @author Keith Donald
 @author Juergen Hoeller
 @since 3.0
 */
public interface FormatterRegistry extends ConverterRegistry {

  /**
   * Adds a Formatter to format fields of a specific type.
   <p>On print, if the Formatter's type T is declared and <code>fieldType</code> is not assignable to T,
   * a coersion to T will be attempted before delegating to <code>formatter</code> to print a field value.
   * On parse, if the parsed object returned by <code>formatter</code> is not assignable to the runtime field type,
   * a coersion to the field type will be attempted before returning the parsed field value.
   @param fieldType the field type to format
   @param formatter the formatter to add
   */
  void addFormatterForFieldType(Class<?> fieldType, Formatter<?> formatter);

  /**
   * Adds a Printer/Parser pair to format fields of a specific type.
   * The formatter will delegate to the specified <code>printer</code> for printing
   * and the specified <code>parser</code> for parsing.
   <p>On print, if the Printer's type T is declared and <code>fieldType</code> is not assignable to T,
   * a coersion to T will be attempted before delegating to <code>printer</code> to print a field value.
   * On parse, if the object returned by the Parser is not assignable to the runtime field type,
   * a coersion to the field type will be attempted before returning the parsed field value.
   @param fieldType the field type to format
   @param printer the printing part of the formatter
   @param parser the parsing part of the formatter
   */
  void addFormatterForFieldType(Class<?> fieldType, Printer<?> printer, Parser<?> parser);

  /**
   * Adds a Formatter to format fields annotated with a specific format annotation.
   @param annotationFormatterFactory the annotation formatter factory to add
   */
  void addFormatterForFieldAnnotation(AnnotationFormatterFactory<? extends Annotation> annotationFormatterFactory);

}