(String key)
| 171 | } |
| 172 | |
| 173 | Object removeProperty(String key) |
| 174 | { |
| 175 | Object oldValue; |
| 176 | if (parent != null) |
| 177 | { |
| 178 | oldValue = parent.removeProperty(name + '.' + key); |
| 179 | } |
| 180 | else |
| 181 | { |
| 182 | oldValue = properties.remove(key); |
| 183 | } |
| 184 | support.firePropertyChange(key, oldValue, null); |
| 185 | return oldValue; |
| 186 | } |
| 187 | |
| 188 | /** |
| 189 | * Gets a property of the specified key as a list of String. If the list is not found, an empty list is returned. |
no test coverage detected