protected void setProperties(
FacesBean bean)
{
super.setProperties(bean);
if (_previousActionListener != null)
bean.setProperty(UIXSingleStep.PREVIOUS_ACTION_LISTENER_KEY, new MethodExpressionMethodBinding(_previousActionListener));
if (_previousAction != null)
bean.setProperty(UIXSingleStep.PREVIOUS_ACTION_KEY, new MethodExpressionMethodBinding(_previousAction));
if (_nextAction != null)
bean.setProperty(UIXSingleStep.NEXT_ACTION_KEY, new MethodExpressionMethodBinding(_nextAction));
if (_nextActionListener != null)
bean.setProperty(UIXSingleStep.NEXT_ACTION_LISTENER_KEY, new MethodExpressionMethodBinding(_nextActionListener));
setProperty(bean, UIXSingleStep.MAX_STEP_KEY, _maxStep);
setProperty(bean, UIXSingleStep.SELECTED_STEP_KEY, _selectedStep);
}