001/**
002 * 
003 */
004package org.picocontainer.gems.behaviors;
005
006import org.picocontainer.ComponentAdapter;
007
008/**
009 * Backwards Compatibility stub for the renamed AsmHiddenImplementation.
010 * @author Michael Rimov
011 * @deprecated  Use AsmHiddenImplementation instead.
012 * @since PicoContainer 2.4
013 */
014@Deprecated
015@SuppressWarnings("serial")
016public class HiddenImplementation<T> extends AsmHiddenImplementation<T> {
017
018
019        /**
020         * @param delegate
021         */
022        public HiddenImplementation(ComponentAdapter<T> delegate) {
023                super(delegate);
024        }
025
026
027
028}