01: /*****************************************************************************
02: * Copyright (C) PicoContainer Organization. All rights reserved. *
03: * ------------------------------------------------------------------------- *
04: * The software in this package is published under the terms of the BSD *
05: * style license a copy of which has been included with this distribution in *
06: * the LICENSE.txt file. *
07: * *
08: * Original code by *
09: *****************************************************************************/package org.picocontainer.gems;
10:
11: import org.picocontainer.gems.behaviors.AsmImplementationHiding;
12: import org.picocontainer.gems.monitors.Log4JComponentMonitor;
13: import org.picocontainer.ComponentMonitor;
14: import org.picocontainer.BehaviorFactory;
15:
16: public class PicoGemsBuilder {
17:
18: public static BehaviorFactory IMPL_HIDING() {
19: return new AsmImplementationHiding();
20: }
21:
22: public static ComponentMonitor LOG4J() {
23: return new Log4JComponentMonitor();
24: }
25:
26: }
|