Класс: slreq.Reference
Пакет: slreq
Удалите требования, на которые ссылаются,
count = remove(topRef)
удаляет требования всего дочернего элемента, на которые ссылаются, под узлом Импорта count
= remove(topRef
)topRef
а также сам узел Импорта. Функция возвращает количество, удаленных требований, на которые ссылаются.
% Load a requirement set file rs = slreq.load('C:\MATLAB\My_Requirement_Set_1.slreqx'); % Find all referenced requirements in the requirement set allRefs = find(rs, 'Type', 'Reference') allRefs = 1×46 Reference array with properties: Id CustomId Artifact ArtifactId Domain UpdatedOn CreatedOn CreatedBy ModifiedBy IsLocked Summary Description Rationale Keywords Type SID FileRevision ModifiedOn Dirty Comments % Remove the top Import node and child referenced requirements under it count = remove(allRefs(1)) count = 46