Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package org.litesoft.core.util;

public interface TemplateSource {

    static final String SUBSTITUTION_ID_PREFIX = "{";
    static final String SUBSTITUTION_ID_SUFFIX = "}";
    static final String SUBSTITUTION_ID_NO_PREFIX = "{No";

    static final String SPACE_SUBSTITUTION_ID = "{Space}"; // used to force either leading or trailing spaces from being "trim()" away

    static final String DONT_SHOW_SUBSTITUTION_ID = "{DontShow}"; // Don't Show this block Indicator

    /**
     * Get the Template value associated with the key
     *
     * @param key Leading and trailing spaces are ignored
     *
     * @return null or the Template value associated with the key
     */
    String get( String key );

    /**
     * Get the Template value associated with the key or the defaultValue if the
     * key was not found or its value was empty
     *
     * @param key Leading and trailing spaces are ignored
     *
     * @return The Template value associated with the key or the defaultValue if
     * the key was not found or its value was empty
     */
    String get( String key, String defaultValue );
}

Commits for litesoft/trunk/GWT_Sandbox/FormEngine/src/org/litesoft/core/util/TemplateSource.java

Diff revisions: vs.
Revision Author Commited Message
948 Diff Diff GeorgeS picture GeorgeS Sat 07 Jun, 2014 23:42:39 +0000

Jusefuls Formatter Updated to New Code Format

724 GeorgeS picture GeorgeS Mon 11 Jun, 2012 00:47:26 +0000