Uses of Interface
jfun.yan.element.ElementStore

Packages that use ElementStore
jfun.yan Basic component combinators and containers. 
jfun.yan.element This package provides ElementStore interface and implementations. 
 

Uses of ElementStore in jfun.yan
 

Methods in jfun.yan that return ElementStore
abstract  ElementStore<T> StoreBinder.toStore(L v)
          Subclasses need to override this method to create the ElementStore object needed to collect the component instances.
 

Uses of ElementStore in jfun.yan.element
 

Classes in jfun.yan.element that implement ElementStore
 class AnyArrayStore<T>
          This class stores component instances into any array.
 class ArrayStore<T>
          This class stores component instances into an Object[] array.
 class ListStore<T>
          This implementation stores component instances into a java.util.List.
 class MapStore<K,T>
          This implementation stores component instances into a java.util.Map object.
 class SetStore<T>
          This implementation stores component instances into a java.util.Set.