/* * Copyright 2009-2015 Jose Luis Martin * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.jdal.ui.validation; import org.springframework.validation.FieldError; /** * Process binding erros. <code>AbstractView</code> execute configured ErrorProcessors * when there are binding errors. * * @author Jose Luis Martin * @since 1.1 */ public interface ErrorProcessor { /** * Process binding error. Usefull for do control interaction on binding erros, * like set a tooltip with error, change background and so. * @param control the control that generate the error * @param error the spring validation error Object */ void processError(Object control, FieldError error); /** * clear state of ErrorProcessor. Useful for undo control changes made in processError. */ void reset(); }