001 package org.picocontainer.gems.adapters;
002
003 /*****************************************************************************
004 * Copyright (C) PicoContainer Organization. All rights reserved. *
005 * ------------------------------------------------------------------------- *
006 * The software in this package is published under the terms of the BSD *
007 * style license a copy of which has been included with this distribution in *
008 * the LICENSE.txt file. *
009 * *
010 * Original code by Leo Simmons & J?rg Schaible *
011 *****************************************************************************/
012 /**
013 * Interface for a static factory wrapper used by the {@link StaticFactoryComponentAdapter}.
014 *
015 * @author Jörg Schaible
016 * @author Leo Simmons
017 * @since 1.1
018 */
019 public interface StaticFactory {
020 /**
021 * @return Returns the instance created by the factory.
022 */
023 public Object get();
024 }