Uses of Interface
org.jboss.seam.contexts.Context

Packages that use Context
org.jboss.seam The Seam component meta-model. 
org.jboss.seam.contexts The Seam Context API and implementations. 
org.jboss.seam.core A set of Seam components that implement Seam. 
org.jboss.seam.framework A framework for data access in Seam. 
org.jboss.seam.init Stuff for starting and initializing Seam in a servlet environment. 
 

Uses of Context in org.jboss.seam
 

Methods in org.jboss.seam that return Context
 Context ScopeType.getContext()
           
 

Constructors in org.jboss.seam with parameters of type Context
Component(Class<?> clazz, Context applicationContext)
           
 

Uses of Context in org.jboss.seam.contexts
 

Classes in org.jboss.seam.contexts that implement Context
 class ApplicationContext
          Application context - state associated with a deployment to a particular node.
 class BasicContext
          A basic implementation of Context that keeps the state in a Map.
 class BusinessProcessContext
          Exposes a jbpm variable context instance for reading/writing.
 class EventContext
          Event context - spans a single request to the server.
 class PageContext
          The page context allows you to store state during a request that renders a page, and access that state from any postback request that originates from that page.
 class ServerConversationContext
          A conversation context is a logical context that lasts longer than a request but shorter than a login session.
 class SessionContext
          Session context - state associated with a user session.
 

Methods in org.jboss.seam.contexts that return Context
static Context Lifecycle.beginMethod()
           
static Context Contexts.getApplicationContext()
           
static Context Contexts.getBusinessProcessContext()
           
static Context Contexts.getConversationContext()
           
static Context Contexts.getEventContext()
           
static Context Contexts.getMethodContext()
           
static Context Contexts.getPageContext()
           
static Context Contexts.getSessionContext()
           
 

Methods in org.jboss.seam.contexts with parameters of type Context
static void Lifecycle.endMethod(Context context)
           
 

Uses of Context in org.jboss.seam.core
 

Methods in org.jboss.seam.core that return Context
 Context Contexts.getApplicationContext()
           
 Context Contexts.getBusinessProcessContext()
           
 Context Contexts.getConversationContext()
           
 Context Contexts.getEventContext()
           
 Context Contexts.getMethodContext()
           
 Context Contexts.getPageContext()
           
 Context Contexts.getSessionContext()
           
 

Uses of Context in org.jboss.seam.framework
 

Methods in org.jboss.seam.framework that return Context
protected  Context Controller.getApplicationContext()
           
protected  Context Controller.getBusinessProcessContext()
           
protected  Context Controller.getConversationContext()
           
protected  Context Controller.getEventContext()
           
protected  Context Controller.getMethodContext()
           
protected  Context Controller.getPageContext()
           
protected  Context Controller.getSessionContext()
           
 

Uses of Context in org.jboss.seam.init
 

Methods in org.jboss.seam.init with parameters of type Context
protected  void Initialization.addComponent(ComponentDescriptor descriptor, Context context)
          This actually creates a real Component and should only be called when we want to install a component