Gets a property of the specified key as a list of String. If the list is not found, an empty list is returned. Note: This converts the string into a list by splitting it using ';' as a separator @param key the property key @return the value in this property context with the specified key value.
(String key)
| 192 | * @return the value in this property context with the specified key value. |
| 193 | */ |
| 194 | List<String> getStringList(String key) |
| 195 | { |
| 196 | return getStringList(key, Collections.emptyList()); |
| 197 | } |
| 198 | |
| 199 | /** |
| 200 | * Gets a property of the specified key as a list of String |
no test coverage detected