Package nexj.core.meta.workflow

Examples of nexj.core.meta.workflow.ValueExpression


    * @param expression The expression that evaluates to the transformation name to set.
    */
   public void setTransformationExpression(Object expression)
   {
      verifyNotReadOnly();
      m_transformation = new ValueExpression(expression);
   }
View Full Code Here


    * may be null.
    */
   public void setTransformationArguments(Object expressions)
   {
      verifyNotReadOnly();
      m_arguments = new ValueExpression(new Pair(Symbol.LIST, expressions));
   }
View Full Code Here

    * @param outputExpression The Scheme expression that evaluates to the output channel name to set.
    */
   public void setOutputExpression(Object expression)
   {
      verifyNotReadOnly();
      m_channel = new ValueExpression(expression);
   }
View Full Code Here

    * @param expression The Scheme expression that evaluates to the sync link to set.
    */
   public void setSyncLink(Object expression)
   {
      verifyNotReadOnly();
      m_syncLinkExpr = new ValueExpression(expression);
   }
View Full Code Here

TOP

Related Classes of nexj.core.meta.workflow.ValueExpression

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.