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 *****************************************************************************/ 009 package org.picocontainer.injectors; 010 011 /** 012 * Constructor Injection where 'which constructor?' is re-calculated each time an 013 * instance is asked to construct a component. 014 */ 015 @SuppressWarnings("serial") 016 public class ForgetfulConstructorInjection extends ConstructorInjection { 017 018 public ForgetfulConstructorInjection() { 019 super(false); 020 } 021 }