This is a built-in template used for replace string concatenation (e.g. String s = "Hello " + name;)
with internationalized Java code expression,
e.g. String s = MessageFormat.format(myResourceBundle.getString("hello.0"), name);. The template is editable. Along with Java expressions and comments, you can also use the predefined variables that will be then expanded into the corresponding values. |
Predefined variables will take the following values: | |||
Expression of type java.util.ResourceBundle, instance of which is available in this context | |||
Property key name which is specified in the corresponding properties file. Typically it is the value that is used for ResourceBundle.getString() method parameter. | |||
Property value which is specified in the corresponding properties file. This is an original Java string literal value. |