Subversion Repository Public Repository

litesoft

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

/**
 * Externalization Resolver that takes a E13nData and resolves it to a String with an Externally Sourced String keyed template system that supports
 * substitutions within any specific template by "named" values.
 */
public interface E13nResolver
{
    /**
     * Resolves the 'data' a String by implementing an Externally Sourced String keyed template system that supports
     * substitutions within any specific template by "named" values.
     *
     * @param data !null
     *
     * @return Resolved String form of the !null 'data';
     */
    public String resolve( E13nData data );
}

Commits for litesoft/trunk/GWT_Sandbox/FormEngine/src/com/temp/shared/externalization/E13nResolver.java

Diff revisions: vs.
Revision Author Commited Message
600 GeorgeS picture GeorgeS Sun 05 Feb, 2012 18:55:58 +0000

Sync-n