Package-level declarations
This package supplies APIs to perform operations related to Normalized systems development.
Example
The following script runs NS expansion, where the expand function is available as an extension of the NSScope class. The body of the ns function is actually a trailing lambda function argument which is a higher-order function that runs within the scope of an NSScope object.
ns {
expand { }
}
Types
The ExecutionTemplate which is created using the expand and harvest execution builder functions. This template class is used as a builder to construct the arguments to start an NS tooling specific execution, such as expanding or harvesting.
This scoping object is created by the ScriptScope.ns function. Its purpose is providing access to functionality such as execution functions that specifically target NS tooling.
The ExecutionTemplate which is created using the validateModel execution builder function. This template class is used as a builder to construct the arguments to start executing an NS model validation.
Functions
This execution function is used to run an expansion process with the NS expansion framework. The body parameter is supplied as a higher-order function that executes within the scope of an NSExecutionTemplate object, in which the parameters for the expansion process can be declared.
This execution function is used to run a harvesting process with the NS expansion framework. The body parameter is supplied as a higher-order function that executes within the scope of an NSExecutionTemplate object, in which the parameters for the harvesting process can be declared.
This execution function is used to run a model validation process with the NS expansion framework. The body parameter is supplied as a higher-order function that executes within the scope of an NSExecutionTemplate object, in which the parameters for the model validation process can be declared.