Main Content

本页采用了机器翻译。点击此处可查看英文原文。

children

类: slreq.Justification
命名空间: slreq

为孩子寻找申述

语法

childJusts = children(jt)

说明

childJusts = children(jt) 返回 slreq.Justification 对象 jt 的子申述 childJusts

输入参数

全部展开

申述,指定为 slreq.Justification 对象。

输出参量

全部展开

属于申述jt 的子申述,作为 slreq.Justification 对象返回。

示例

寻找子申述

% Load a requirement set file and find justification objects
rs = slreq.load('C:\MATLAB\My_Requirements_Set_1.slreqx');
allJusts = find(rs, 'Type', 'Justification')

allJusts = 

  1×20 Justification array with properties:

    Id
    Summary
    Description
    Keywords
    Rationale
    CreatedOn
    CreatedBy
    ModifiedBy
    SID
    FileRevision
    ModifiedOn
    Dirty
    Comments

jt1 = allJusts(1);

% Find the children of jt1
childJusts = children(jt1)

childJusts = 

   1×10 Justification array with properties:

    Id
    Summary
    Description
    Keywords
    Rationale
    CreatedOn
    CreatedBy
    ModifiedBy
    SID
    FileRevision
    ModifiedOn
    Dirty
    Comments

提示

  • 要获取需求集的顶级项目,请使用 slreq.ReqSetchildren 方法。要获取某个需求的子需求,请使用 slreq.Requirementchildren 方法。要获取引用需求,请使用 slreq.Referencechildren 方法。

版本历史记录

在 R2018b 中推出