Get a message from the bundle. @param key the message key @return the message
(final String key)
| 66 | * @return the message |
| 67 | */ |
| 68 | protected String getInternal(final String key) { |
| 69 | try { |
| 70 | return bundle.getString(key); |
| 71 | } catch (MissingResourceException e) { |
| 72 | return key; |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | /** |
| 77 | * Get a message from the bundle with arguments. |