112113114115116117118119120
return this; } public SetRight notifiedWithLeft(ValidationFeedback... feedbacks) { this.left.feedback = new CompositeValidationFeedback(feedbacks); return this; }
124125126127128129130131132
return this; } public Finish notifiedWithRight(ValidationFeedback... feedbacks) { this.right.feedback = new CompositeValidationFeedback(feedbacks); return this; }