if (action != null) {
if (UIComponentTag.isValueReference(action)) {
MethodBinding binding = application.createMethodBinding(action, null);
((org.apache.myfaces.tobago.component.UICommand) component).setAction(binding);
} else {
((org.apache.myfaces.tobago.component.UICommand) component).setAction(new ConstantMethodBinding(action));
}
}
}
}