Class DataDictionaryVariableELResolver
- java.lang.Object
-
- org.flowable.common.engine.impl.javax.el.ELResolver
-
- com.flowable.platform.engine.impl.datadictionary.el.DataDictionaryVariableELResolver
-
public class DataDictionaryVariableELResolver extends ELResolver
-
-
Field Summary
-
Fields inherited from class org.flowable.common.engine.impl.javax.el.ELResolver
RESOLVABLE_AT_DESIGN_TIME, TYPE
-
-
Constructor Summary
Constructors Constructor Description DataDictionaryVariableELResolver()
DataDictionaryVariableELResolver(boolean readOnly)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Object
getArrayElementValue(DataDictionaryArrayType arrayVariable, Object property)
Class<?>
getCommonPropertyType(ELContext context, Object base)
Iterator<FeatureDescriptor>
getFeatureDescriptors(ELContext elContext, Object o)
protected Object
getPropertyValue(DataDictionaryComplexType complexVariable, Object property)
Class<?>
getType(ELContext context, Object base, Object property)
Object
getValue(ELContext context, Object base, Object property)
boolean
isReadOnly(ELContext context, Object base, Object property)
void
setValue(ELContext context, Object base, Object property, Object value)
-
Methods inherited from class org.flowable.common.engine.impl.javax.el.ELResolver
invoke
-
-
-
-
Method Detail
-
getCommonPropertyType
public Class<?> getCommonPropertyType(ELContext context, Object base)
- Specified by:
getCommonPropertyType
in classELResolver
-
getFeatureDescriptors
public Iterator<FeatureDescriptor> getFeatureDescriptors(ELContext elContext, Object o)
- Specified by:
getFeatureDescriptors
in classELResolver
-
getType
public Class<?> getType(ELContext context, Object base, Object property)
- Specified by:
getType
in classELResolver
-
getValue
public Object getValue(ELContext context, Object base, Object property)
- Specified by:
getValue
in classELResolver
-
getPropertyValue
protected Object getPropertyValue(DataDictionaryComplexType complexVariable, Object property)
-
getArrayElementValue
protected Object getArrayElementValue(DataDictionaryArrayType arrayVariable, Object property)
-
isReadOnly
public boolean isReadOnly(ELContext context, Object base, Object property)
- Specified by:
isReadOnly
in classELResolver
-
-