Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/GWT_Sandbox/FormEngine/src/org/litesoft/core/util/TemplateSource.java

Diff revisions: vs.
  @@ -1,7 +1,6 @@
1 1 package org.litesoft.core.util;
2 2
3 - public interface TemplateSource
4 - {
3 + public interface TemplateSource {
5 4
6 5 static final String SUBSTITUTION_ID_PREFIX = "{";
7 6 static final String SUBSTITUTION_ID_SUFFIX = "}";
  @@ -27,7 +26,7 @@
27 26 * @param key Leading and trailing spaces are ignored
28 27 *
29 28 * @return The Template value associated with the key or the defaultValue if
30 - * the key was not found or its value was empty
29 + * the key was not found or its value was empty
31 30 */
32 31 String get( String key, String defaultValue );
33 32 }