Subversion Repository Public Repository

litesoft

Diff Revisions 599 vs 600 for /trunk/GWT_Sandbox/FormEngine/src/com/temp/shared/ValueValidator.java

Diff revisions: vs.
  @@ -1,11 +1,15 @@
1 1 package com.temp.shared;
2 2
3 - public interface ValueValidator<T> {
3 + import com.temp.shared.externalization.*;
4 +
5 + public interface ValueValidator<T>
6 + {
4 7 /**
5 8 * Check the 'value' for acceptableness.
6 9 *
7 10 * @param value the value to be checked, null is possible!
11 + *
8 12 * @return null if the 'value' is acceptable, otherwise the data to generate the Error Text
9 13 */
10 - E13nData checkValue(T value);
14 + E13nData checkValue( T value );
11 15 }