Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/GWT_Sandbox/FormEngine/src/com/temp/client/foundation/pavment/PlaceTokenCodec.java

Diff revisions: vs.
  @@ -13,14 +13,14 @@
13 13 *
14 14 * @return nulls are returned as "", otherwise the Encoded String.
15 15 */
16 - public String encode(String unencoded);
16 + public String encode( String unencoded );
17 17
18 18 /**
19 19 * Decode the previously "encoded" data, null or bad encoding will return
20 20 * null.
21 21 *
22 22 * @return null indicates that the data was either null or contained
23 - * unacceptable characters for decoding.
23 + * unacceptable characters for decoding.
24 24 */
25 - public String decode(String encoded);
25 + public String decode( String encoded );
26 26 }