01: package org.picocontainer.gems.adapters;
02:
03: /*****************************************************************************
04: * Copyright (C) PicoContainer Organization. All rights reserved. *
05: * ------------------------------------------------------------------------- *
06: * The software in this package is published under the terms of the BSD *
07: * style license a copy of which has been included with this distribution in *
08: * the LICENSE.txt file. *
09: * *
10: * Original code by Leo Simmons & Jörg Schaible *
11: *****************************************************************************/
12: /**
13: * Interface for a static factory wrapper used by the {@link StaticFactoryAdapter}.
14: *
15: * @author Jörg Schaible
16: * @author Leo Simmons
17: */
18: public interface StaticFactory {
19: /**
20: * @return Returns the instance created by the factory.
21: */
22: public Object get();
23: }
|