Public Member Functions | |
Args * | reset () |
Args * | add (UText x) |
Args * | add (wchar[] x) |
Args * | add (int x) |
Args * | add (double x) |
Private Attributes | |
uint[32] | args |
uint | index |
wchar[] format = "{0} {1, number, currency} {2, number, integer}"; UMessageFormat msg = new UMessageFormat (format); msg.Args args; msg.format (output, args.add("abc").add(152.0).add(456));
Note that the argument order must follow that of the format string, although the format string may dictate the ultimate position of each argument.
See http://oss.software.ibm.com/icu/apiref/umsg_8h.html for details on the format string.
Definition at line 249 of file UMessageFormat.d.
|
Definition at line 264 of file UMessageFormat.d. References index. |
|
Definition at line 274 of file UMessageFormat.d. References args, UText::get(), and index. |
|
Definition at line 285 of file UMessageFormat.d. |
|
Definition at line 296 of file UMessageFormat.d. |
|
Definition at line 307 of file UMessageFormat.d. |
|
Definition at line 251 of file UMessageFormat.d. Referenced by add(). |
|
Definition at line 252 of file UMessageFormat.d. |