当前位置: 首页>>代码示例>>Java>>正文


Java Expression.getValue方法代码示例

本文整理汇总了Java中org.activiti.engine.delegate.Expression.getValue方法的典型用法代码示例。如果您正苦于以下问题:Java Expression.getValue方法的具体用法?Java Expression.getValue怎么用?Java Expression.getValue使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.activiti.engine.delegate.Expression的用法示例。


在下文中一共展示了Expression.getValue方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getExpressionString

import org.activiti.engine.delegate.Expression; //导入方法依赖的package包/类
protected String getExpressionString(Expression expression, VariableScope variableScope) 
{
    if (expression != null) 
    {
        return (String) expression.getValue(variableScope);
    }
    return null;
}
 
开发者ID:Alfresco,项目名称:alfresco-repository,代码行数:9,代码来源:ConvertDateToISO8601.java

示例2: getStringFromField

import org.activiti.engine.delegate.Expression; //导入方法依赖的package包/类
protected String getStringFromField(Expression expression, DelegateExecution execution) {
  if (expression != null) {
    Object value = expression.getValue(execution);
    if (value != null) {
      return value.toString();
    }
  }
  return null;
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:10,代码来源:MuleSendActivitiBehavior.java

示例3: getStringFromField

import org.activiti.engine.delegate.Expression; //导入方法依赖的package包/类
protected String getStringFromField(Expression expression, DelegateExecution execution) {
  if(expression != null) {
    Object value = expression.getValue(execution);
    if(value != null) {
      return value.toString();
    }
  }
  return null;
}
 
开发者ID:logicalhacking,项目名称:SecureBPMN,代码行数:10,代码来源:MailActivityBehavior.java

示例4: getExpressionVariable

import org.activiti.engine.delegate.Expression; //导入方法依赖的package包/类
/**
 * Gets an expression variable from the execution. This method will return null if the expression is null (i.e. when a workflow doesn't define the
 * expression).
 *
 * @param expression the expression variable to get.
 * @param execution the execution that contains the variable value.
 *
 * @return the variable value or null if the expression is null.
 */
public Object getExpressionVariable(Expression expression, DelegateExecution execution)
{
    return (expression == null ? null : expression.getValue(execution));
}
 
开发者ID:FINRAOS,项目名称:herd,代码行数:14,代码来源:ActivitiHelper.java


注:本文中的org.activiti.engine.delegate.Expression.getValue方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。