69707172737475
* @param expression The expression that evaluates to the transformation name to set. */ public void setTransformationExpression(Object expression) { verifyNotReadOnly(); m_transformation = new ValueExpression(expression); }
89909192939495
* may be null. */ public void setTransformationArguments(Object expressions) { verifyNotReadOnly(); m_arguments = new ValueExpression(new Pair(Symbol.LIST, expressions)); }
80818283848586
* @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); }
81828384858687
* @param expression The Scheme expression that evaluates to the sync link to set. */ public void setSyncLink(Object expression) { verifyNotReadOnly(); m_syncLinkExpr = new ValueExpression(expression); }