Make AbstractMvcView.shouldValidate() protected

Issues: SWF-1458
This commit is contained in:
Rossen Stoyanchev
2012-02-28 18:25:18 -05:00
parent d616e6bed8
commit 3a36fedb5b

View File

@@ -521,7 +521,7 @@ public abstract class AbstractMvcView implements View {
* @param transition the matched transition
* @return true if binding should occur, false if not
*/
private boolean shouldValidate(Object model, TransitionDefinition transition) {
protected boolean shouldValidate(Object model, TransitionDefinition transition) {
Boolean validateAttribute = getValidateAttribute(transition);
if (validateAttribute != null) {
return validateAttribute.booleanValue();