Uses of Interface
com.hammurapi.util.Context

Packages that use Context
com.hammurapi.util   
 

Uses of Context in com.hammurapi.util
 

Subinterfaces of Context in com.hammurapi.util
 interface MutableContext
          Context which can be modified.
 

Classes in com.hammurapi.util that implement Context
 class CompositeContext
          Context delegating to other contexts "parts".
 class DefaultContext
          Default context uses ServiceLoader to find services in a given classloader and map of bindings.
 class FacadeContext
          Simple context implementation.
 class SimpleMutableContext
          Simple context implementation.
 class SingletonChainingContext<ST>
           
 

Fields in com.hammurapi.util declared as Context
static Context Context.INSTANCE
          Context constructed from all available context services.
 

Methods in com.hammurapi.util with parameters of type Context
<T> T
Adaptable.getAdapter(Class<T> type, Context context)
          Retrieves adapter of given type from adaptable.
 void CompositeContext.setParts(Context... parts)
           
 

Constructors in com.hammurapi.util with parameters of type Context
CompositeContext(Context... parts)
           
SingletonChainingContext(Class<ST> type, ST service, Context chain)