I am working on a new application, and I need to do a search message interface using the key to find the value (e.g. ConstantsWithLookup, but capable of receiving parameters). I am studying the functionality of a dictionary class, but it lacks the message settings through the parameters.
With ConstantsWithLookup, I can do the following:
myConstantsWithLookupInterface.getString("key");
and get something like:
Field must be filled with numbers
But I need to do this:
myMessagesWithLookupInterface.getString("key", "param1", "param2",...);
and get something like:
Field _param1_ must be filled with numbers greater than _param2_
I do not know how to do that.
Txang source share