set_name: Set the name of a SA-item

View source: R/saprocessing.R

set_nameR Documentation

Set the name of a SA-item

Description

Set the name of a SA-item

Usage

set_name(jsap, idx, name)

Arguments

jsap

SAProcessing to be modified.

idx

index of the target SA-item.

name

character corresponding to the new name

Value

NULL returned invisibly

See Also

sai_name()

Examples


# Load a Workspace
file <- system.file("workspaces", "workspace_test.xml", package = "rjd3workspace")

jws <- jws_open(file)

# Select SAProcessing
sap1 <- jws_sap(jws,1)

# Select SA-item
sai1 <- jsap_sai(sap1,3) # java object sai

# set name
set_name(sap1,3,"RF1011_1")

# check
sai1 <- jsap_sai(sap1,3) # reload sai
sai_name(sai1) #get name



rjd3workspace documentation built on July 17, 2026, 9:07 a.m.