Uses of Class
org.camunda.bpm.engine.impl.javax.el.ELContext

Packages that use ELContext
org.camunda.bpm.engine.impl.core.variable.scope   
org.camunda.bpm.engine.impl.delegate   
org.camunda.bpm.engine.impl.el   
org.camunda.bpm.engine.impl.javax.el   
org.camunda.bpm.engine.impl.juel   
org.camunda.bpm.engine.test.mock   
 

Uses of ELContext in org.camunda.bpm.engine.impl.core.variable.scope
 

Fields in org.camunda.bpm.engine.impl.core.variable.scope declared as ELContext
protected  ELContext AbstractVariableScope.cachedElContext
           
 

Methods in org.camunda.bpm.engine.impl.core.variable.scope that return ELContext
 ELContext AbstractVariableScope.getCachedElContext()
           
 

Methods in org.camunda.bpm.engine.impl.core.variable.scope with parameters of type ELContext
 void AbstractVariableScope.setCachedElContext(ELContext cachedElContext)
           
 

Uses of ELContext in org.camunda.bpm.engine.impl.delegate
 

Fields in org.camunda.bpm.engine.impl.delegate declared as ELContext
protected  ELContext ExpressionSetInvocation.elContext
           
protected  ELContext ExpressionGetInvocation.elContext
           
 

Constructors in org.camunda.bpm.engine.impl.delegate with parameters of type ELContext
ExpressionGetInvocation(ValueExpression valueExpression, ELContext elContext, BaseDelegateExecution contextExecution)
           
ExpressionSetInvocation(ValueExpression valueExpression, ELContext elContext, Object value, BaseDelegateExecution contextExecution)
           
 

Uses of ELContext in org.camunda.bpm.engine.impl.el
 

Subclasses of ELContext in org.camunda.bpm.engine.impl.el
 class ProcessEngineElContext
          ELContext used by the process engine.
 

Fields in org.camunda.bpm.engine.impl.el declared as ELContext
protected  ELContext ExpressionManager.parsingElContext
           
 

Methods in org.camunda.bpm.engine.impl.el that return ELContext
 ELContext ExpressionManager.createElContext(org.camunda.bpm.engine.variable.context.VariableContext variableContext)
           
 ELContext ExpressionManager.getElContext(VariableScope variableScope)
           
 

Methods in org.camunda.bpm.engine.impl.el with parameters of type ELContext
 Class<?> ReadOnlyMapELResolver.getCommonPropertyType(ELContext context, Object arg)
           
 Class<?> VariableContextElResolver.getCommonPropertyType(ELContext arg0, Object arg1)
           
 Class<?> VariableScopeElResolver.getCommonPropertyType(ELContext arg0, Object arg1)
           
 Class<?> AbstractElResolverDelegate.getCommonPropertyType(ELContext context, Object base)
           
 Iterator<FeatureDescriptor> ReadOnlyMapELResolver.getFeatureDescriptors(ELContext context, Object arg)
           
 Iterator<FeatureDescriptor> VariableContextElResolver.getFeatureDescriptors(ELContext arg0, Object arg1)
           
 Iterator<FeatureDescriptor> VariableScopeElResolver.getFeatureDescriptors(ELContext arg0, Object arg1)
           
 Iterator<FeatureDescriptor> AbstractElResolverDelegate.getFeatureDescriptors(ELContext context, Object base)
           
 Class<?> ReadOnlyMapELResolver.getType(ELContext context, Object arg1, Object arg2)
           
 Class<?> VariableContextElResolver.getType(ELContext arg0, Object arg1, Object arg2)
           
 Class<?> VariableScopeElResolver.getType(ELContext arg0, Object arg1, Object arg2)
           
 Class<?> AbstractElResolverDelegate.getType(ELContext context, Object base, Object property)
           
 Object ReadOnlyMapELResolver.getValue(ELContext context, Object base, Object property)
           
 Object VariableContextElResolver.getValue(ELContext context, Object base, Object property)
           
 Object VariableScopeElResolver.getValue(ELContext context, Object base, Object property)
           
 Object AbstractElResolverDelegate.getValue(ELContext context, Object base, Object property)
           
 Object AbstractElResolverDelegate.invoke(ELContext context, Object base, Object method, Class<?>[] paramTypes, Object[] params)
           
 boolean ReadOnlyMapELResolver.isReadOnly(ELContext context, Object base, Object property)
           
 boolean VariableContextElResolver.isReadOnly(ELContext context, Object base, Object property)
           
 boolean VariableScopeElResolver.isReadOnly(ELContext context, Object base, Object property)
           
 boolean AbstractElResolverDelegate.isReadOnly(ELContext context, Object base, Object property)
           
 void ReadOnlyMapELResolver.setValue(ELContext context, Object base, Object property, Object value)
           
 void VariableContextElResolver.setValue(ELContext context, Object base, Object property, Object value)
           
 void VariableScopeElResolver.setValue(ELContext context, Object base, Object property, Object value)
           
 void AbstractElResolverDelegate.setValue(ELContext context, Object base, Object property, Object value)
           
 

Uses of ELContext in org.camunda.bpm.engine.impl.javax.el
 

Methods in org.camunda.bpm.engine.impl.javax.el that return ELContext
 ELContext ELContextEvent.getELContext()
          Returns the ELContext that was created.
 

Methods in org.camunda.bpm.engine.impl.javax.el with parameters of type ELContext
abstract  MethodExpression ExpressionFactory.createMethodExpression(ELContext context, String expression, Class<?> expectedReturnType, Class<?>[] expectedParamTypes)
          Parses an expression into a MethodExpression for later evaluation.
abstract  ValueExpression ExpressionFactory.createValueExpression(ELContext context, String expression, Class<?> expectedType)
          Parses an expression into a ValueExpression for later evaluation.
 Class<?> ResourceBundleELResolver.getCommonPropertyType(ELContext context, Object base)
          If the base object is a ResourceBundle, returns the most general type that this resolver accepts for the property argument.
 Class<?> DynamicBeanPropertyELResolver.getCommonPropertyType(ELContext context, Object base)
           
 Class<?> MapELResolver.getCommonPropertyType(ELContext context, Object base)
          If the base object is a map, returns the most general type that this resolver accepts for the property argument.
 Class<?> ArrayELResolver.getCommonPropertyType(ELContext context, Object base)
          If the base object is a Java language array, returns the most general type that this resolver accepts for the property argument.
 Class<?> ListELResolver.getCommonPropertyType(ELContext context, Object base)
          If the base object is a list, returns the most general type that this resolver accepts for the property argument.
 Class<?> CompositeELResolver.getCommonPropertyType(ELContext context, Object base)
          Returns the most general type that this resolver accepts for the property argument, given a base object.
abstract  Class<?> ELResolver.getCommonPropertyType(ELContext context, Object base)
          Returns the most general type that this resolver accepts for the property argument, given a base object.
 Class<?> BeanELResolver.getCommonPropertyType(ELContext context, Object base)
          If the base object is not null, returns the most general type that this resolver accepts for the property argument.
 Iterator<FeatureDescriptor> ResourceBundleELResolver.getFeatureDescriptors(ELContext context, Object base)
          If the base object is a ResourceBundle, returns an Iterator containing the set of keys available in the ResourceBundle.
 Iterator<FeatureDescriptor> DynamicBeanPropertyELResolver.getFeatureDescriptors(ELContext context, Object base)
           
 Iterator<FeatureDescriptor> MapELResolver.getFeatureDescriptors(ELContext context, Object base)
          If the base object is a map, returns an Iterator containing the set of keys available in the Map.
 Iterator<FeatureDescriptor> ArrayELResolver.getFeatureDescriptors(ELContext context, Object base)
          Always returns null, since there is no reason to iterate through set set of all integers.
 Iterator<FeatureDescriptor> ListELResolver.getFeatureDescriptors(ELContext context, Object base)
          Always returns null, since there is no reason to iterate through set set of all integers.
 Iterator<FeatureDescriptor> CompositeELResolver.getFeatureDescriptors(ELContext context, Object base)
          Returns information about the set of variables or properties that can be resolved for the given base object.
abstract  Iterator<FeatureDescriptor> ELResolver.getFeatureDescriptors(ELContext context, Object base)
          Returns information about the set of variables or properties that can be resolved for the given base object.
 Iterator<FeatureDescriptor> BeanELResolver.getFeatureDescriptors(ELContext context, Object base)
          If the base object is not null, returns an Iterator containing the set of JavaBeans properties available on the given object.
abstract  MethodInfo MethodExpression.getMethodInfo(ELContext context)
          Evaluates the expression relative to the provided context, and returns information about the actual referenced method.
abstract  Class<?> ValueExpression.getType(ELContext context)
          Evaluates the expression relative to the provided context, and returns the most general type that is acceptable for an object to be passed as the value parameter in a future call to the ValueExpression.setValue(ELContext, Object) method.
 Class<?> ResourceBundleELResolver.getType(ELContext context, Object base, Object property)
          If the base object is an instance of ResourceBundle, return null, since the resolver is read only.
 Class<?> DynamicBeanPropertyELResolver.getType(ELContext context, Object base, Object property)
           
 Class<?> MapELResolver.getType(ELContext context, Object base, Object property)
          If the base object is a map, returns the most general acceptable type for a value in this map.
 Class<?> ArrayELResolver.getType(ELContext context, Object base, Object property)
          If the base object is an array, returns the most general acceptable type for a value in this array.
 Class<?> ListELResolver.getType(ELContext context, Object base, Object property)
          If the base object is a list, returns the most general acceptable type for a value in this list.
 Class<?> CompositeELResolver.getType(ELContext context, Object base, Object property)
          For a given base and property, attempts to identify the most general type that is acceptable for an object to be passed as the value parameter in a future call to the CompositeELResolver.setValue(ELContext, Object, Object, Object) method.
abstract  Class<?> ELResolver.getType(ELContext context, Object base, Object property)
          For a given base and property, attempts to identify the most general type that is acceptable for an object to be passed as the value parameter in a future call to the ELResolver.setValue(ELContext, Object, Object, Object) method.
 Class<?> BeanELResolver.getType(ELContext context, Object base, Object property)
          If the base object is not null, returns the most general acceptable type that can be set on this bean property.
abstract  Object ValueExpression.getValue(ELContext context)
          Evaluates the expression relative to the provided context, and returns the resulting value.
 Object ResourceBundleELResolver.getValue(ELContext context, Object base, Object property)
          If the base object is an instance of ResourceBundle, the provided property will first be coerced to a String.
 Object DynamicBeanPropertyELResolver.getValue(ELContext context, Object base, Object property)
           
 Object MapELResolver.getValue(ELContext context, Object base, Object property)
          If the base object is a map, returns the value associated with the given key, as specified by the property argument.
 Object ArrayELResolver.getValue(ELContext context, Object base, Object property)
          If the base object is a Java language array, returns the value at the given index.
 Object ListELResolver.getValue(ELContext context, Object base, Object property)
          If the base object is a list, returns the value at the given index.
 Object CompositeELResolver.getValue(ELContext context, Object base, Object property)
          Attempts to resolve the given property object on the given base object by querying all component resolvers.
abstract  Object ELResolver.getValue(ELContext context, Object base, Object property)
          Attempts to resolve the given property object on the given base object.
 Object BeanELResolver.getValue(ELContext context, Object base, Object property)
          If the base object is not null, returns the current value of the given property on this bean.
 ValueReference ValueExpression.getValueReference(ELContext context)
          Returns a ValueReference for this expression instance.
abstract  Object MethodExpression.invoke(ELContext context, Object[] params)
          If a String literal is specified as the expression, returns the String literal coerced to the expected return type of the method signature.
 Object CompositeELResolver.invoke(ELContext context, Object base, Object method, Class<?>[] paramTypes, Object[] params)
          Attempts to resolve and invoke the given method on the given base object by querying all component resolvers.
 Object ELResolver.invoke(ELContext context, Object base, Object method, Class<?>[] paramTypes, Object[] params)
          Attempts to resolve and invoke the given method on the given base object.
 Object BeanELResolver.invoke(ELContext context, Object base, Object method, Class<?>[] paramTypes, Object[] params)
          If the base object is not null, invoke the method, with the given parameters on this bean.
abstract  boolean ValueExpression.isReadOnly(ELContext context)
          Evaluates the expression relative to the provided context, and returns true if a call to ValueExpression.setValue(ELContext, Object) will always fail.
 boolean ResourceBundleELResolver.isReadOnly(ELContext context, Object base, Object property)
          If the base object is not null and an instanceof java.util.ResourceBundle, return true.
 boolean DynamicBeanPropertyELResolver.isReadOnly(ELContext context, Object base, Object property)
           
 boolean MapELResolver.isReadOnly(ELContext context, Object base, Object property)
          If the base object is a map, returns whether a call to MapELResolver.setValue(ELContext, Object, Object, Object) will always fail.
 boolean ArrayELResolver.isReadOnly(ELContext context, Object base, Object property)
          If the base object is a Java language array, returns whether a call to ArrayELResolver.setValue(ELContext, Object, Object, Object) will always fail.
 boolean ListELResolver.isReadOnly(ELContext context, Object base, Object property)
          If the base object is a list, returns whether a call to ListELResolver.setValue(ELContext, Object, Object, Object) will always fail.
 boolean CompositeELResolver.isReadOnly(ELContext context, Object base, Object property)
          For a given base and property, attempts to determine whether a call to CompositeELResolver.setValue(ELContext, Object, Object, Object) will always fail.
abstract  boolean ELResolver.isReadOnly(ELContext context, Object base, Object property)
          For a given base and property, attempts to determine whether a call to ELResolver.setValue(ELContext, Object, Object, Object) will always fail.
 boolean BeanELResolver.isReadOnly(ELContext context, Object base, Object property)
          If the base object is not null, returns whether a call to BeanELResolver.setValue(ELContext, Object, Object, Object) will always fail.
abstract  void ValueExpression.setValue(ELContext context, Object value)
          Evaluates the expression relative to the provided context, and sets the result to the provided value.
 void ResourceBundleELResolver.setValue(ELContext context, Object base, Object property, Object value)
          If the base object is a ResourceBundle, throw a PropertyNotWritableException.
 void DynamicBeanPropertyELResolver.setValue(ELContext context, Object base, Object property, Object value)
           
 void MapELResolver.setValue(ELContext context, Object base, Object property, Object value)
          If the base object is a map, attempts to set the value associated with the given key, as specified by the property argument.
 void ArrayELResolver.setValue(ELContext context, Object base, Object property, Object value)
          If the base object is a Java language array, attempts to set the value at the given index with the given value.
 void ListELResolver.setValue(ELContext context, Object base, Object property, Object value)
          If the base object is a list, attempts to set the value at the given index with the given value.
 void CompositeELResolver.setValue(ELContext context, Object base, Object property, Object value)
          Attempts to set the value of the given property object on the given base object.
abstract  void ELResolver.setValue(ELContext context, Object base, Object property, Object value)
          Attempts to set the value of the given property object on the given base object.
 void BeanELResolver.setValue(ELContext context, Object base, Object property, Object value)
          If the base object is not null, attempts to set the value of the given property on this bean.
 

Constructors in org.camunda.bpm.engine.impl.javax.el with parameters of type ELContext
ELContextEvent(ELContext source)
          Constructs an ELContextEvent object to indicate that an ELContext has been created.
 

Uses of ELContext in org.camunda.bpm.engine.impl.juel
 

Subclasses of ELContext in org.camunda.bpm.engine.impl.juel
 class SimpleContext
          Simple context implementation.
 

Methods in org.camunda.bpm.engine.impl.juel with parameters of type ELContext
 TreeMethodExpression ExpressionFactoryImpl.createMethodExpression(ELContext context, String expression, Class<?> expectedReturnType, Class<?>[] expectedParamTypes)
           
 TreeValueExpression ExpressionFactoryImpl.createValueExpression(ELContext context, String expression, Class<?> expectedType)
           
 Object AstNull.eval(Bindings bindings, ELContext context)
           
 Object AstChoice.eval(Bindings bindings, ELContext context)
           
 Object AstComposite.eval(Bindings bindings, ELContext context)
           
 Object AstText.eval(Bindings bindings, ELContext context)
           
 Object[] AstParameters.eval(Bindings bindings, ELContext context)
           
 Object AstString.eval(Bindings bindings, ELContext context)
           
 Object AstIdentifier.eval(Bindings bindings, ELContext context)
           
 Object AstFunction.eval(Bindings bindings, ELContext context)
           
 Object AstMethod.eval(Bindings bindings, ELContext context)
           
 Object AstProperty.eval(Bindings bindings, ELContext context)
           
 Object AstNested.eval(Bindings bindings, ELContext context)
           
 Object AstUnary.eval(Bindings bindings, ELContext context)
           
 Object AstBoolean.eval(Bindings bindings, ELContext context)
           
 Object AstBinary.eval(Bindings bindings, ELContext context)
           
abstract  Object AstNode.eval(Bindings bindings, ELContext context)
           
 Object AstNumber.eval(Bindings bindings, ELContext context)
           
 Object AstEval.eval(Bindings bindings, ELContext context)
           
 Object AstUnary.Operator.eval(Bindings bindings, ELContext context, AstNode node)
           
 Object AstUnary.SimpleOperator.eval(Bindings bindings, ELContext context, AstNode node)
           
 Object AstBinary.Operator.eval(Bindings bindings, ELContext context, AstNode left, AstNode right)
           
 Object AstBinary.SimpleOperator.eval(Bindings bindings, ELContext context, AstNode left, AstNode right)
           
 Class<?> RootPropertyResolver.getCommonPropertyType(ELContext context, Object base)
           
 Class<?> SimpleResolver.getCommonPropertyType(ELContext context, Object base)
           
 Iterator<FeatureDescriptor> RootPropertyResolver.getFeatureDescriptors(ELContext context, Object base)
           
 Iterator<FeatureDescriptor> SimpleResolver.getFeatureDescriptors(ELContext context, Object base)
           
protected  Method AstIdentifier.getMethod(Bindings bindings, ELContext context, Class<?> returnType, Class<?>[] paramTypes)
           
 MethodInfo AstText.getMethodInfo(Bindings bindings, ELContext context, Class<?> returnType, Class<?>[] paramTypes)
           
 MethodInfo AstIdentifier.getMethodInfo(Bindings bindings, ELContext context, Class<?> returnType, Class<?>[] paramTypes)
           
 MethodInfo AstMethod.getMethodInfo(Bindings bindings, ELContext context, Class<?> returnType, Class<?>[] paramTypes)
           
 MethodInfo AstProperty.getMethodInfo(Bindings bindings, ELContext context, Class<?> returnType, Class<?>[] paramTypes)
           
 MethodInfo ExpressionNode.getMethodInfo(Bindings bindings, ELContext context, Class<?> returnType, Class<?>[] paramTypes)
          Get method information.
 MethodInfo AstRightValue.getMethodInfo(Bindings bindings, ELContext context, Class<?> returnType, Class<?>[] paramTypes)
           
 MethodInfo AstEval.getMethodInfo(Bindings bindings, ELContext context, Class<?> returnType, Class<?>[] paramTypes)
           
 MethodInfo TreeMethodExpression.getMethodInfo(ELContext context)
          Evaluates the expression and answers information about the method
protected abstract  Object AstProperty.getProperty(Bindings bindings, ELContext context)
           
protected  String AstDot.getProperty(Bindings bindings, ELContext context)
           
protected  Object AstBracket.getProperty(Bindings bindings, ELContext context)
           
 Class<?> AstText.getType(Bindings bindings, ELContext context)
           
 Class<?> AstIdentifier.getType(Bindings bindings, ELContext context)
           
 Class<?> AstMethod.getType(Bindings bindings, ELContext context)
           
 Class<?> AstProperty.getType(Bindings bindings, ELContext context)
           
 Class<?> ExpressionNode.getType(Bindings bindings, ELContext context)
          Get the value type accepted in ExpressionNode.setValue(Bindings, ELContext, Object).
 Class<?> AstRightValue.getType(Bindings bindings, ELContext context)
          according to the spec, the result is undefined for rvalues, so answer null
 Class<?> AstEval.getType(Bindings bindings, ELContext context)
           
 Class<?> TreeValueExpression.getType(ELContext context)
          Evaluates the expression as an lvalue and answers the result type.
 Class<?> ObjectValueExpression.getType(ELContext context)
          Answer null.
 Class<?> RootPropertyResolver.getType(ELContext context, Object base, Object property)
           
 Class<?> SimpleResolver.getType(ELContext context, Object base, Object property)
           
 Object AstNode.getValue(Bindings bindings, ELContext context, Class<?> type)
          evaluate and return the (optionally coerced) result.
 Object ExpressionNode.getValue(Bindings bindings, ELContext context, Class<?> expectedType)
          Evaluate node.
 Object TreeValueExpression.getValue(ELContext context)
          Evaluates the expression as an rvalue and answers the result.
 Object ObjectValueExpression.getValue(ELContext context)
          Answer the wrapped object, coerced to the expected type.
 Object RootPropertyResolver.getValue(ELContext context, Object base, Object property)
           
 Object SimpleResolver.getValue(ELContext context, Object base, Object property)
           
 ValueReference AstText.getValueReference(Bindings bindings, ELContext context)
           
 ValueReference AstIdentifier.getValueReference(Bindings bindings, ELContext context)
           
 ValueReference AstMethod.getValueReference(Bindings bindings, ELContext context)
           
 ValueReference AstProperty.getValueReference(Bindings bindings, ELContext context)
           
 ValueReference ExpressionNode.getValueReference(Bindings bindings, ELContext context)
          Get value reference.
 ValueReference AstRightValue.getValueReference(Bindings bindings, ELContext context)
           
 ValueReference AstEval.getValueReference(Bindings bindings, ELContext context)
           
 ValueReference TreeValueExpression.getValueReference(ELContext context)
           
 Object AstText.invoke(Bindings bindings, ELContext context, Class<?> returnType, Class<?>[] paramTypes, Object[] paramValues)
           
 Object AstIdentifier.invoke(Bindings bindings, ELContext context, Class<?> returnType, Class<?>[] paramTypes, Object[] params)
           
 Object AstMethod.invoke(Bindings bindings, ELContext context, Class<?> returnType, Class<?>[] paramTypes, Object[] paramValues)
           
 Object AstProperty.invoke(Bindings bindings, ELContext context, Class<?> returnType, Class<?>[] paramTypes, Object[] paramValues)
           
 Object ExpressionNode.invoke(Bindings bindings, ELContext context, Class<?> returnType, Class<?>[] paramTypes, Object[] paramValues)
          Invoke method.
 Object AstRightValue.invoke(Bindings bindings, ELContext context, Class<?> returnType, Class<?>[] paramTypes, Object[] paramValues)
           
 Object AstEval.invoke(Bindings bindings, ELContext context, Class<?> returnType, Class<?>[] paramTypes, Object[] paramValues)
           
protected  Object AstFunction.invoke(Bindings bindings, ELContext context, Object base, Method method)
          Invoke method.
 Object TreeMethodExpression.invoke(ELContext context, Object[] paramValues)
          Evaluates the expression and invokes the method.
 Object RootPropertyResolver.invoke(ELContext context, Object base, Object method, Class<?>[] paramTypes, Object[] params)
           
 Object SimpleResolver.invoke(ELContext context, Object base, Object method, Class<?>[] paramTypes, Object[] params)
           
 boolean AstText.isReadOnly(Bindings bindings, ELContext context)
           
 boolean AstIdentifier.isReadOnly(Bindings bindings, ELContext context)
           
 boolean AstMethod.isReadOnly(Bindings bindings, ELContext context)
           
 boolean AstProperty.isReadOnly(Bindings bindings, ELContext context)
           
 boolean ExpressionNode.isReadOnly(Bindings bindings, ELContext context)
          Determine whether ExpressionNode.setValue(Bindings, ELContext, Object) will throw a PropertyNotWritableException.
 boolean AstRightValue.isReadOnly(Bindings bindings, ELContext context)
          non-lvalues are always readonly, so answer true
 boolean AstEval.isReadOnly(Bindings bindings, ELContext context)
           
 boolean TreeValueExpression.isReadOnly(ELContext context)
          Evaluates the expression as an lvalue and determines if TreeValueExpression.setValue(ELContext, Object) will always fail.
 boolean ObjectValueExpression.isReadOnly(ELContext context)
          Answer true.
 boolean RootPropertyResolver.isReadOnly(ELContext context, Object base, Object property)
           
 boolean SimpleResolver.isReadOnly(ELContext context, Object base, Object property)
           
 void AstText.setValue(Bindings bindings, ELContext context, Object value)
           
 void AstIdentifier.setValue(Bindings bindings, ELContext context, Object value)
           
 void AstMethod.setValue(Bindings bindings, ELContext context, Object value)
           
 void AstProperty.setValue(Bindings bindings, ELContext context, Object value)
           
 void ExpressionNode.setValue(Bindings bindings, ELContext context, Object value)
          Assign value.
 void AstRightValue.setValue(Bindings bindings, ELContext context, Object value)
          non-lvalues are always readonly, so throw an exception
 void AstEval.setValue(Bindings bindings, ELContext context, Object value)
           
 void TreeValueExpression.setValue(ELContext context, Object value)
          Evaluates the expression as an lvalue and assigns the given value.
 void ObjectValueExpression.setValue(ELContext context, Object value)
          Throw an exception.
 void RootPropertyResolver.setValue(ELContext context, Object base, Object property, Object value)
           
 void SimpleResolver.setValue(ELContext context, Object base, Object property, Object value)
           
 

Uses of ELContext in org.camunda.bpm.engine.test.mock
 

Methods in org.camunda.bpm.engine.test.mock with parameters of type ELContext
 Class<?> MockElResolver.getCommonPropertyType(ELContext context, Object base)
           
 Iterator<FeatureDescriptor> MockElResolver.getFeatureDescriptors(ELContext context, Object base)
           
 Class<?> MockElResolver.getType(ELContext context, Object base, Object property)
           
 Object MockElResolver.getValue(ELContext context, Object base, Object property)
           
 boolean MockElResolver.isReadOnly(ELContext context, Object base, Object property)
           
 void MockElResolver.setValue(ELContext context, Object base, Object property, Object value)
           
 



Copyright © 2015 camunda services GmbH. All rights reserved.