The parent class of all jaspObjects.

Methods

Public methods


Method new()

Do not create an instance of a jaspObject (it will throw an error).

Usage

jaspObjR$new()


Method print()

print a jaspObject. Note that `print(jaspObj)` calls `jaspObj$print()`

Usage

jaspObjR$print()


Method dependOn()

Specify dependencies for a jaspObject

Usage

jaspObjR$dependOn(
  options = NULL,
  optionsFromObject = NULL,
  optionContainsValue = NULL
)

Arguments

options

string, the name of an option, e.g., `"variables"`.

optionsFromObject

jaspObject, copy the dependencies from another jaspObject.

optionContainsValue

named list, the name corresponds to an option and the value corresponds to whatever this options should contain, e.g., `list(variables = "contNormal")`