Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.temp.common.shared;

import org.litesoft.externalization.shared.*;

public interface ValueValidator<T> {
    /**
     * Check the 'value' for acceptableness.
     *
     * @param value the value to be checked, null is possible!
     *
     * @return null if the 'value' is acceptable, otherwise the data to generate the Error Text
     */
    E13nData checkValue( T value );

    public static final ValueValidator<?>[] EMPTY_ARRAY = new ValueValidator<?>[0];
}

Commits for litesoft/trunk/GWT_Sandbox/FormEngine/src/com/temp/common/shared/ValueValidator.java

Diff revisions: vs.
Revision Author Commited Message
964 GeorgeS picture GeorgeS Fri 01 Aug, 2014 03:18:23 +0000

!