Uses of Class
jfun.yan.containers.SimpleContainer

Packages that use SimpleContainer
jfun.yan.containers This package provides some pre-built container classes. 
jfun.yan.monitoring This package provides a solution for component monitoring to Yan container framework. 
 

Uses of SimpleContainer in jfun.yan.containers
 

Subclasses of SimpleContainer in jfun.yan.containers
 class DefaultContainer
          Default container implementation that uses SimpleContainer with SimpleRegistrar.
 class ImmutablePreferredContainer
          An optimized container that's fast when it is used immutably.
 class ManualContainer
          Default container implementation that uses manual wiring.
 class ManualWiringContainer
          A container where auto-wiring is disabled.
 class ProxyContainer
          A container that transforms all the components registered to it to use dynamic proxy for instance creation.
 class SingletonContainer
          A container that transforms all Component objects registered into it to singleton.
 class SingletonProxyContainer
          A container that transforms all component registered to use singleton and dynamic proxy when instantiating component.
 class TransformingContainer
          A Container that transforms a Component using a ComponentTransformer object before the component is registered into the container.
 

Uses of SimpleContainer in jfun.yan.monitoring
 

Subclasses of SimpleContainer in jfun.yan.monitoring
 class MonitoringContainer
           A container implementation that adds monitoring support for constructors and methods registered using registerConstructor(), registerStaticMethod() and registerMethod().