Uses of Class
org.jboss.seam.ScopeType

Packages that use ScopeType
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.databinding Implementation of @DataModel and friends. 
org.jboss.seam.init Stuff for starting and initializing Seam in a servlet environment. 
org.jboss.seam.navigation Implementation of pages.xml based navigation 
 

Uses of ScopeType in org.jboss.seam
 

Methods in org.jboss.seam that return ScopeType
static ScopeType Seam.getComponentRoleScope(Class clazz, Role role)
          Get the scope for a role
static ScopeType Seam.getComponentScope(Class<?> clazz)
          Get the default scope
 ScopeType ComponentType.getDefaultScope()
           
 ScopeType Component.getScope()
           
static ScopeType ScopeType.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ScopeType[] ScopeType.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in org.jboss.seam with parameters of type ScopeType
static Object Component.getInstance(Class<?> clazz, ScopeType scope)
           
static Object Component.getInstance(Class<?> clazz, ScopeType scope, boolean create)
           
static Object Component.getInstance(String name, ScopeType scope)
           
static Object Component.getInstance(String name, ScopeType scope, boolean create)
           
static Object Component.getInstance(String name, ScopeType scope, boolean create, boolean allowAutocreation)
           
 

Constructors in org.jboss.seam with parameters of type ScopeType
Component(Class<?> clazz, String componentName, ScopeType componentScope, boolean startup, String[] dependencies, String jndiName)
           
 

Uses of ScopeType in org.jboss.seam.contexts
 

Methods in org.jboss.seam.contexts that return ScopeType
 ScopeType BusinessProcessContext.getType()
           
 ScopeType Context.getType()
          Get the scope that this context object is associated with,
 ScopeType BasicContext.getType()
           
 ScopeType ServerConversationContext.getType()
           
 ScopeType PageContext.getType()
           
 

Constructors in org.jboss.seam.contexts with parameters of type ScopeType
BasicContext(ScopeType scope)
           
BasicContext(ScopeType scope, Map<String,Object> map)
           
 

Uses of ScopeType in org.jboss.seam.core
 

Methods in org.jboss.seam.core that return ScopeType
 ScopeType Init.FactoryMethod.getScope()
           
 ScopeType Init.FactoryExpression.getScope()
           
 

Methods in org.jboss.seam.core with parameters of type ScopeType
 void Init.addFactoryMethodExpression(String variable, String methodBindingExpression, ScopeType scope)
           
 void Init.addFactoryValueExpression(String variable, String valueBindingExpression, ScopeType scope)
           
 

Uses of ScopeType in org.jboss.seam.databinding
 

Methods in org.jboss.seam.databinding that return ScopeType
 ScopeType DataModelBinder.getVariableScope(DataModel out)
           
 ScopeType DataBinder.getVariableScope(Out out)
           
 

Uses of ScopeType in org.jboss.seam.init
 

Fields in org.jboss.seam.init declared as ScopeType
protected  ScopeType ComponentDescriptor.scope
           
 

Methods in org.jboss.seam.init that return ScopeType
 ScopeType ComponentDescriptor.getScope()
           
 

Constructors in org.jboss.seam.init with parameters of type ScopeType
ComponentDescriptor(String name, Class<?> componentClass, ScopeType scope)
          For a scanned role
ComponentDescriptor(String name, Class<?> componentClass, ScopeType scope, Boolean autoCreate, Boolean startup, String[] startupDepends, String jndiName, Boolean installed, Integer precedence)
          For components.xml
 

Uses of ScopeType in org.jboss.seam.navigation
 

Methods in org.jboss.seam.navigation that return ScopeType
 ScopeType Put.getScope()
           
 

Methods in org.jboss.seam.navigation with parameters of type ScopeType
 void Put.setScope(ScopeType scope)