01: /*
02: * @(#)Validator.java
03: *
04: * Copyright 2002 - 2005 JIDE Software Inc. All rights reserved.
05: */
06: package com.jidesoft.validation;
07:
08: import java.util.EventListener;
09:
10: /**
11: * <code>Validator</code> is an interface for validating a object.
12: */
13: public interface Validator extends EventListener {
14:
15: /**
16: * Validates the value in the ValidationObject.
17: * <p/>
18: * The event has both old value and new value as well as the source who sends this object.
19: * The implementation of this method should validate if the
20: * value is valid. If the value is valid, simply return ValidationResult.OK.
21: * Otherwise, constructs a ValidationResult and provide the id and message.
22: *
23: * @param e
24: */
25: ValidationResult validating(ValidationObject e);
26: }
|