Uses of Class
org.jboss.seam.Component

Packages that use Component
org.jboss.seam The Seam component meta-model. 
org.jboss.seam.async Seam asynchronicity: dispatcher implementations and schedule classes. 
org.jboss.seam.core A set of Seam components that implement Seam. 
org.jboss.seam.intercept Implementation of the Seam interceptor stack. 
org.jboss.seam.persistence Seam components for working with JPA or Hibernate3. 
 

Uses of Component in org.jboss.seam
 

Methods in org.jboss.seam that return Component
static Component Seam.componentForName(String name)
          Get the Seam component, even if no application context is associated with the current thread.
static Component Component.forName(String name)
           
 Component Instance.getComponent()
           
 

Uses of Component in org.jboss.seam.async
 

Methods in org.jboss.seam.async with parameters of type Component
 T Dispatcher.scheduleInvocation(InvocationContext invocation, Component component)
          Schedule an asynchronous method call, examining annotations upon the method to determine the schedule
 QuartzTriggerHandle QuartzDispatcher.scheduleInvocation(InvocationContext invocation, Component component)
           
 Future ThreadPoolDispatcher.scheduleInvocation(InvocationContext invocation, Component component)
           
 javax.ejb.Timer TimerServiceDispatcher.scheduleInvocation(InvocationContext invocation, Component component)
           
 

Constructors in org.jboss.seam.async with parameters of type Component
AsynchronousInvocation(InvocationContext invocation, Component component)
           
 

Uses of Component in org.jboss.seam.core
 

Methods in org.jboss.seam.core that return Component
 Component Init.FactoryMethod.getComponent()
           
 Component Init.ObserverMethod.getComponent()
           
 

Methods in org.jboss.seam.core with parameters of type Component
 void Init.addFactoryMethod(String variable, Method method, Component component)
           
 void Init.addObserverMethod(String eventType, Method method, Component component, boolean create)
           
 void Init.removeObserverMethods(Component component)
          Remove any observer methods registered on the component.
 

Uses of Component in org.jboss.seam.intercept
 

Fields in org.jboss.seam.intercept with type parameters of type Component
static ThreadLocal<Component> SessionBeanInterceptor.COMPONENT
           
 

Methods in org.jboss.seam.intercept that return Component
protected  Component RootInterceptor.getComponent()
           
protected  Component AbstractInterceptor.getComponent()
           
 

Methods in org.jboss.seam.intercept with parameters of type Component
protected  void RootInterceptor.init(Component component)
           
 void AbstractInterceptor.setComponent(Component component)
           
 

Constructors in org.jboss.seam.intercept with parameters of type Component
ClientSideInterceptor(Object bean, Component component)
           
Interceptor(Class[] classes, Annotation annotation, Component component)
           
Interceptor(Object interceptor, Component component)
           
JavaBeanInterceptor(Object bean, Component component)
           
 

Uses of Component in org.jboss.seam.persistence
 

Methods in org.jboss.seam.persistence with parameters of type Component
 void ManagedPersistenceContext.create(Component component)
           
 void ManagedHibernateSession.create(Component component)
           
 void Filter.create(Component component)
           
 void EntityManagerFactory.startup(Component component)