Why and when to perform this task
In addition to setting localization values that are required by LocalizableTextFormatter, you can set a number of optional values in application code, either through the constructor or by calling any of several methods for that purpose. With optional values, you can do the following:Steps for this task
Object[] arg = {new String(getAccountNumber())};
Note: Because the array is passed by value rather than by reference, any updates to the array variable after this point are not reflected in the LocalizableTextFormatter instance unless it is reset by calling the setArguments(Object[]) method.
What to do next
Write code to generate the localized text.