001    package org.picocontainer;
002    
003    
004    /**
005     * Interface for containers that can handle string-to-object conversion in object parameters.
006     * @author Paul Hammant
007     */
008    public interface Converting {
009    
010        /**
011         * Retrieve the set of converters for transforming string parameters
012         * into objects.
013         * @return converter set instance.
014         */
015        Converters getConverters();
016    
017    }