public interface MessageInterpolator
Implementations should be as tolerant as possible on syntax errors. Implementations must be thread-safe.
| Modifier and Type | Interface and Description | 
|---|---|
| static interface  | MessageInterpolator.ContextInformation related to the interpolation context. | 
| Modifier and Type | Method and Description | 
|---|---|
| String | interpolate(String messageTemplate,
           MessageInterpolator.Context context)Interpolates the message template based on the constraint validation context. | 
| String | interpolate(String messageTemplate,
           MessageInterpolator.Context context,
           Locale locale)Interpolates the message template based on the constraint validation context. | 
String interpolate(String messageTemplate, MessageInterpolator.Context context)
 The locale is defaulted according to the MessageInterpolator
 implementation. See the implementation documentation for more detail.
messageTemplate - the message to interpolatecontext - contextual information related to the interpolationString interpolate(String messageTemplate, MessageInterpolator.Context context, Locale locale)
Locale used is provided as a parameter.messageTemplate - the message to interpolatecontext - contextual information related to the interpolationlocale - the locale targeted for the messageCopyright © 2019 Eclipse Foundation.
Use is subject to license terms.