package cnp.ew.converter;

/**
 * Any object that wants more control over converting
 * itself into a string than toString() offers should
 * implement this interface, and create a CpToStringConverter
 * class.
 *
 * @version        $Version$
 * @author         $Author: Ken $
 */
public interface CpConvertibleToString
{
    /**
     * Answer the object that can convert instances of this class
     * into a string.
     */
    public CpToStringConverter converterToString();
}