001    /*****************************************************************************
002     * Copyright (C) PicoContainer Organization. All rights reserved.            *
003     * ------------------------------------------------------------------------- *
004     * The software in this package is published under the terms of the BSD      *
005     * style license a copy of which has been included with this distribution in *
006     * the LICENSE.txt file.                                                     *
007     *                                                                           *
008     * Original code by                                                          *
009     *****************************************************************************/
010    package org.picocontainer.alternatives;
011    
012    import org.picocontainer.defaults.ComponentAdapterFactory;
013    
014    
015    /**
016     * @author Aslak Hellesøy
017     * @see org.picocontainer.gems.HotSwappingComponentAdapterFactory for a more feature-rich version of the class
018     * @since 1.1
019     * @deprecated since 1.2, moved to package {@link org.picocontainer.defaults}
020     */
021    public class ImplementationHidingComponentAdapterFactory extends
022            org.picocontainer.defaults.ImplementationHidingComponentAdapterFactory {
023    
024        /**
025         * @deprecated since 1.2, moved to package {@link org.picocontainer.defaults}
026         */
027        ImplementationHidingComponentAdapterFactory() {
028            super();
029        }
030    
031        /**
032         * @deprecated since 1.2, moved to package {@link org.picocontainer.defaults}
033         */
034        public ImplementationHidingComponentAdapterFactory(ComponentAdapterFactory delegate, boolean strict) {
035            super(delegate, strict);
036        }
037    
038        /**
039         * @deprecated since 1.2, moved to package {@link org.picocontainer.defaults}
040         */
041        public ImplementationHidingComponentAdapterFactory(ComponentAdapterFactory delegate) {
042            super(delegate);
043        }
044    
045    }