Uses of Interface
org.jboss.seam.core.Expressions.ValueExpression

Packages that use Expressions.ValueExpression
org.jboss.seam.core A set of Seam components that implement Seam. 
org.jboss.seam.drools Seam components for integrating Drools. 
org.jboss.seam.exception Implementation of Seam exception handling for JSF. 
org.jboss.seam.framework A framework for data access in Seam. 
org.jboss.seam.navigation Implementation of pages.xml based navigation 
org.jboss.seam.persistence Seam components for working with JPA or Hibernate3. 
org.jboss.seam.transaction Abstracts all possible transaction management APIs behind a JTA-compatible interface. 
 

Uses of Expressions.ValueExpression in org.jboss.seam.core
 

Methods in org.jboss.seam.core that return Expressions.ValueExpression
 Expressions.ValueExpression<Object> Expressions.createValueExpression(String expression)
          Create a value expression.
<T> Expressions.ValueExpression<T>
Expressions.createValueExpression(String expression, Class<T> type)
          Create a value expression.
 Expressions.ValueExpression Init.FactoryExpression.getValueBinding()
           
 

Uses of Expressions.ValueExpression in org.jboss.seam.drools
 

Methods in org.jboss.seam.drools that return Expressions.ValueExpression
 Expressions.ValueExpression<org.drools.RuleBase> ManagedWorkingMemory.getRuleBase()
           
 

Methods in org.jboss.seam.drools with parameters of type Expressions.ValueExpression
 void ManagedWorkingMemory.setRuleBase(Expressions.ValueExpression<org.drools.RuleBase> ruleBase)
           
 

Uses of Expressions.ValueExpression in org.jboss.seam.exception
 

Constructors in org.jboss.seam.exception with parameters of type Expressions.ValueExpression
ConfigRedirectHandler(Expressions.ValueExpression<String> id, Class clazz, boolean conversation, String message, javax.faces.application.FacesMessage.Severity messageSeverity)
          Construct a ConfigRedirectHandler.
 

Uses of Expressions.ValueExpression in org.jboss.seam.framework
 

Fields in org.jboss.seam.framework declared as Expressions.ValueExpression
protected  Expressions.ValueExpression Home.newInstance
           
 

Methods in org.jboss.seam.framework that return Expressions.ValueExpression
 Expressions.ValueExpression Home.getNewInstance()
           
 

Methods in org.jboss.seam.framework that return types with arguments of type Expressions.ValueExpression
protected  List<Expressions.ValueExpression> Query.getQueryParameters()
           
protected  List<Expressions.ValueExpression> Query.getRestrictionParameters()
           
 

Methods in org.jboss.seam.framework with parameters of type Expressions.ValueExpression
 void Home.setNewInstance(Expressions.ValueExpression newInstance)
           
 

Uses of Expressions.ValueExpression in org.jboss.seam.navigation
 

Methods in org.jboss.seam.navigation that return Expressions.ValueExpression
 Expressions.ValueExpression<Boolean> ConversationControl.getBeginConversationCondition()
           
 Expressions.ValueExpression Rule.getCondition()
           
 Expressions.ValueExpression Param.getConverterValueExpression()
           
 Expressions.ValueExpression<Boolean> ConversationControl.getEndConversationCondition()
           
 Expressions.ValueExpression<Object> Navigation.getOutcome()
           
 Expressions.ValueExpression<Long> ProcessControl.getProcessId()
           
 Expressions.ValueExpression<Long> TaskControl.getTaskId()
           
 Expressions.ValueExpression<String> TaskControl.getTransition()
           
 Expressions.ValueExpression Param.getValidatorValueExpression()
           
 Expressions.ValueExpression Put.getValue()
           
 Expressions.ValueExpression Param.getValueExpression()
           
 Expressions.ValueExpression Action.getValueExpression()
           
 

Methods in org.jboss.seam.navigation with parameters of type Expressions.ValueExpression
 void ConversationControl.setBeginConversationCondition(Expressions.ValueExpression<Boolean> beginConversationCondition)
           
 void Rule.setCondition(Expressions.ValueExpression expression)
           
 void Param.setConverterValueExpression(Expressions.ValueExpression converterValueExpression)
           
 void ConversationControl.setEndConversationCondition(Expressions.ValueExpression<Boolean> endConversationCondition)
           
 void Navigation.setOutcome(Expressions.ValueExpression<Object> outcomeValueExpression)
           
 void ProcessControl.setProcessId(Expressions.ValueExpression<Long> processId)
           
 void TaskControl.setTaskId(Expressions.ValueExpression<Long> taskId)
           
 void TaskControl.setTransition(Expressions.ValueExpression<String> transition)
           
 void Param.setValidatorValueExpression(Expressions.ValueExpression validatorValueExpression)
           
 void Put.setValue(Expressions.ValueExpression value)
           
 void Param.setValueExpression(Expressions.ValueExpression valueExpression)
           
 void Action.setValueExpression(Expressions.ValueExpression valueExpression)
           
 

Constructors in org.jboss.seam.navigation with parameters of type Expressions.ValueExpression
RedirectNavigationHandler(Expressions.ValueExpression<String> viewId, List<Param> params, String message, javax.faces.application.FacesMessage.Severity severity, String control)
           
RenderNavigationHandler(Expressions.ValueExpression<String> viewId, String message, javax.faces.application.FacesMessage.Severity severity, String control)
           
 

Uses of Expressions.ValueExpression in org.jboss.seam.persistence
 

Methods in org.jboss.seam.persistence that return Expressions.ValueExpression
 Expressions.ValueExpression Filter.getEnabled()
           
 Expressions.ValueExpression<javax.persistence.EntityManagerFactory> ManagedPersistenceContext.getEntityManagerFactory()
          A value binding expression that returns an EntityManagerFactory, for use of JPA outside of Java EE 5 / Embeddable EJB3.
 Expressions.ValueExpression<org.hibernate.SessionFactory> ManagedHibernateSession.getSessionFactory()
           
 

Methods in org.jboss.seam.persistence that return types with arguments of type Expressions.ValueExpression
 Map<String,Expressions.ValueExpression> Filter.getParameters()
          The filter parameters.
 List<Expressions.ValueExpression> QueryParser.getParameterValueBindings()
           
 

Methods in org.jboss.seam.persistence with parameters of type Expressions.ValueExpression
 void Filter.setEnabled(Expressions.ValueExpression enabled)
           
 void ManagedPersistenceContext.setEntityManagerFactory(Expressions.ValueExpression<javax.persistence.EntityManagerFactory> entityManagerFactory)
           
 void ManagedHibernateSession.setSessionFactory(Expressions.ValueExpression<org.hibernate.SessionFactory> sessionFactory)
          A value binding expression that returns a SessionFactory, if it is to be obtained as a Seam component reference
 

Method parameters in org.jboss.seam.persistence with type arguments of type Expressions.ValueExpression
 void Filter.setParameters(Map<String,Expressions.ValueExpression> parameters)
           
 

Uses of Expressions.ValueExpression in org.jboss.seam.transaction
 

Methods in org.jboss.seam.transaction that return Expressions.ValueExpression
 Expressions.ValueExpression<javax.persistence.EntityManager> EntityTransaction.getEntityManager()
           
 Expressions.ValueExpression<org.hibernate.Session> HibernateTransaction.getSession()
           
 

Methods in org.jboss.seam.transaction with parameters of type Expressions.ValueExpression
 void EntityTransaction.setEntityManager(Expressions.ValueExpression<javax.persistence.EntityManager> entityManager)
           
 void HibernateTransaction.setSession(Expressions.ValueExpression<org.hibernate.Session> entityManager)