_fromExpression = fromExpression;
}
public void processAction(ActionEvent actionEvent)
{
ELContext elContext= new LegacyELContext(FacesContext.getCurrentInstance());
Object fromValue = _fromExpression.getValue(elContext);
_toExpression.setValue(elContext, fromValue);
}