Uses of Class
jfun.yan.ComponentInstantiationException

Packages that use ComponentInstantiationException
jfun.yan Basic component combinators and containers. 
jfun.yan.containers This package provides some pre-built container classes. 
 

Uses of ComponentInstantiationException in jfun.yan
 

Methods in jfun.yan that throw ComponentInstantiationException
 T Creator.create(Dependency dep)
          Create a component instance.
 java.lang.Object Dependency.getArgument(Signature source, int i, java.lang.Class type)
          Get an instance of an argument.
 java.lang.Object Container.getInstance(java.lang.Object key)
          Create instance for a component identified by a key.
 java.lang.Object Container.getInstance(java.lang.Object key, ComponentMap cmap)
          Create instance for a component identified by a key.
<T> T
Container.getInstanceOfType(java.lang.Class<T> type)
          Create component instance of the provided type.
<T> T
Container.getInstanceOfType(java.lang.Class<T> type, ComponentMap cmap)
          Create component instance of the provided type.
 java.util.List Container.getInstances()
          Create instances of all the components stored in this container.
 java.util.List Container.getInstances(ComponentMap cmap)
          Create instances of all the components stored in this container.
 void Container.getInstances(java.util.Map store)
          Create instances of all the components stored in this container.
 void Container.getInstances(java.util.Map store, ComponentMap cmap)
          Create instances of all the components stored in this container.
<T> java.util.List<T>
Container.getInstancesOfType(java.lang.Class<T> type)
          Create component instances of a provided type.
<T> java.util.List<T>
Container.getInstancesOfType(java.lang.Class<T> type, ComponentMap cmap)
          Create component instances of a provided type.
 java.lang.Object Dependency.getProperty(java.lang.Class component_type, java.lang.Object key, java.lang.Class type)
          Get an instance of a property.
<T> T
Container.instantiateComponent(Creator<T> cc)
          Instantiate component instance.
<T> T
Container.instantiateComponent(java.lang.Object key, Creator<T> cc)
          Instantiate component instance.
 

Uses of ComponentInstantiationException in jfun.yan.containers
 

Methods in jfun.yan.containers that throw ComponentInstantiationException
 void DelegatingContainer.getInstances(java.util.Map store)
           
 void DelegatingContainer.getInstances(java.util.Map store, ComponentMap cmap)
           
<T> T
SimpleContainer.instantiateComponent(Creator<T> cc)
           
<T> T
DelegatingContainer.instantiateComponent(Creator<T> cc)
           
<T> T
SimpleContainer.instantiateComponent(Creator<T> cc, ComponentMap cmap)
           
<T> T
SimpleContainer.instantiateComponent(java.lang.Object key, Creator<T> cc)
           
<T> T
DelegatingContainer.instantiateComponent(java.lang.Object key, Creator<T> cc)
           
<T> T
SimpleContainer.instantiateComponent(java.lang.Object key, Creator<T> cc, ComponentMap cmap)