01: package com.acme.util;
02:
03: import java.lang.*;
04:
05: /**
06: * This class contains utility methods for SP and
07: * should be removed in a later release.
08: *
09: * @deprecated No replacement.
10: */
11: public class SPUtil {
12:
13: /**
14: * Return the bracketed form of the given String.
15: *
16: * @param st The string to be bracketed.
17: * @return The bracketed string.
18: */
19: public static String bracketedString(String st) {
20: String bs = "[" + st + "]";
21: return bs;
22: }
23:
24: }
|