MCPcopy Create free account
hub / github.com/PCGen/pcgen / setStringList

Method setStringList

code/src/java/pcgen/system/PropertyContext.java:220–223  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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 {

Callers 3

updateRecentFilePropMethod · 0.80
setCampaignsMethod · 0.80

Calls 2

setPropertyMethod · 0.95
joinMethod · 0.80

Tested by

no test coverage detected