[New] Added I18nMessage.getValue(String)

This commit is contained in:
Robert von Burg 2020-03-16 17:10:18 +01:00
parent d355b81a87
commit c13469ac0a
1 changed files with 4 additions and 0 deletions

View File

@ -44,6 +44,10 @@ public class I18nMessage {
return this.values;
}
public Object getValue(String key) {
return this.values.get(key);
}
public String getMessage() {
return formatMessage();
}