if( name==null || value==null ) return;
XmlMapper xm=ctx.getMapper();
Context context=(Context)ctx.currentObject();
// replace ${foo} in value
value=xm.replaceProperties( value );
if( context.getDebug() > 0 )
context.log("Setting " + name + "=" + value);
context.setProperty( name, value );
}
});