Uses of Class
ix.util.context.ContextLink

Packages that use ContextLink
ix.util.context Context-layering mechanism. 
 

Uses of ContextLink in ix.util.context
 

Fields in ix.util.context declared as ContextLink
protected  ContextLink ContextValue.link
           
 

Methods in ix.util.context that return ContextLink
static ContextLink Context.getValueLinkInContext(ContextLink cl, Context c)
          Searches a chain of ContextLinks to find the link that contains the value associated with a given context.
 

Methods in ix.util.context with parameters of type ContextLink
static java.lang.Object Context.getInContext(ContextLink cl, Context c)
          Searches a chain of ContextLinks to find the value associated with a given context.
static java.lang.Object Context.getInContext(ContextLink cl, Context c, java.lang.Object defaultValue)
          Searches a chain of ContextLinks to find the value associated with a given context and returns a default value if no value can be found.
static ContextLink Context.getValueLinkInContext(ContextLink cl, Context c)
          Searches a chain of ContextLinks to find the link that contains the value associated with a given context.
static java.lang.Object Context.requireInContext(ContextLink cl, Context c)
          Searches a chain of ContextLinks to find the value associated with a given context and throws an exception if no value can be found.
static void Context.setInContext(ContextLink cl, Context c, java.lang.Object value)
          Modifies a chain of ContextLinks to associate a value directly with a given context.