Sets property to the specified key to a list of String Note: This converts the string list into a single string by joining them using ';' as a separator @param key key the property key @param value the list of String, that will be stored into the property context
(String key, List<String> value)
| 218 | * @param value the list of String, that will be stored into the property context |
| 219 | */ |
| 220 | void setStringList(String key, List<String> value) |
| 221 | { |
| 222 | setProperty(key, String.join(";", value)); |
| 223 | } |
| 224 | |
| 225 | public int getInt(String key) |
| 226 | { |
no test coverage detected