Get/Set Comment from a SA-item
Examples
# Load a Workspace
file <- system.file("workspaces", "workspace_test.xml", package = "rjd3workspace")
jws <- jws_open(file)
# Select SAProcessing
jsap1 <- jws_sap(jws, 1L)
# Add a comment
set_comment(jsap1, 2L, "data collection changed in 2012")
jsai2 <- jsap_sai(jsap1, 2L)
get_comment(jsai2)
#> [1] "data collection changed in 2012"