Main Content
matlab.buildtool.Plan Class
Namespace: matlab.buildtool
Description
The matlab.buildtool.Plan
class is the fundamental interface used to group
a set of tasks and define a build.
A Plan
object behaves like a dictionary of tasks, where keys are task names
and values are Task
objects. To add
a task to the plan, modify a task in the plan, or return a copy of a specific task in the
plan, index into the Plan
object by using the task name:
plan("
adds thetaskName
") = tTask
objectt
to the plan.plan("
modifies a property of the specified task.taskName
").TaskProp
= valuet = plan("
returns a copy of the specified task.taskName
")
Creation
To create a Plan
object, use the buildplan
function.