author: Thomas Behr 03-01-02 @param key @return property
(String key)
| 102 | * @return property |
| 103 | */ |
| 104 | private static String getProperty(String key) |
| 105 | { |
| 106 | if (bundle == null) |
| 107 | { |
| 108 | init(); |
| 109 | } |
| 110 | |
| 111 | String value; |
| 112 | try |
| 113 | { |
| 114 | value = bundle.getString(key); |
| 115 | } |
| 116 | catch (MissingResourceException mre) |
| 117 | { |
| 118 | value = key + UNDEFINED; |
| 119 | } |
| 120 | return value; |
| 121 | } |
| 122 | |
| 123 | /** |
| 124 | * author: Thomas Behr 03-01-02 |
no test coverage detected