Uses of Class
ix.util.context.Context

Packages that use Context
ix.iplan The I-X planner. 
ix.util.context Context-layering mechanism. 
 

Uses of Context in ix.iplan
 

Fields in ix.iplan declared as Context
protected  Context Alternative.context
           
 

Methods in ix.iplan that return Context
 Context Alternative.getContext()
           
 Context IPlanOptionManager.Opt.getExpectedContext()
           
 

Uses of Context in ix.util.context
 

Fields in ix.util.context declared as Context
protected  Context BasicContextHolder.context
           
protected  Context ContextLockingProxy.Handler.instanceContext
           
static Context Context.rootContext
          A context that is an ancestor of all others.
 

Methods in ix.util.context that return Context
 Context PlainContextHolder.getContext()
           
 Context BasicContextHolder.getContext()
           
 Context ContextHolder.getContext()
          Returns the context currently stored in the holder.
static Context Context.getContext()
          Returns the current context from the ContextHolder returned by the current ContextHoldingStrategy.
static Context Context.getContext(long n)
          Returns the context that has the indicated number, or null if that context has been discarded or has ceased to exist.
 Context Context.getParent()
          Returns this context's parent context.
static Context Context.popContext()
          Calls popContext(ContextHolder) on the ContextHolder returned by the current ContextHoldingStrategy
static Context Context.popContext(ContextHolder h)
          Moves the specified context-holder to the parent of its current context.
static Context Context.pushContext()
          Calls pushContext(ContextHolder) on the ContextHolder returned by the current ContextHoldingStrategy.
static Context Context.pushContext(ContextHolder h)
          Moves the specified context-holder to a new child of its current context and returns that new context.
 

Methods in ix.util.context with parameters of type Context
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 void Context.inContext(ContextHolder h, Context c, java.lang.Runnable r)
          Temporarily changes a context-holder's current context around a call to a Runnable's run() method.
static void Context.inContext(Context c, java.lang.Runnable r)
          Calls inContext(ContextHolder, Context, Runnable) on the ContextHolder returned by the current ContextHoldingStrategy.
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.
 void PlainContextHolder.setContext(Context c)
           
 void BasicContextHolder.setContext(Context c)
           
 void ContextHolder.setContext(Context c)
          Changes the context currently stored in the holder.
static void Context.setContext(Context c)
          Sets the context in the ContextHolder returned by the current ContextHoldingStrategy.
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.
 

Constructors in ix.util.context with parameters of type Context
BasicContextHolder(Context c)
           
Context(Context parent)
          Create a context with a given parent.
ContextLink(Context context, java.lang.Object value)
          Creates a link that specifies a value for a given context.
PlainContextHolder(Context c)