Main Content

setAttribute

クラス: slreq.Justification
名前空間: slreq

正当化の属性の設定

構文

setAttribute(jt, propertyName, propertyValue)

説明

setAttribute(jt, propertyName, propertyValue) は、正当化のプロパティを設定します。

入力引数

すべて展開する

正当化。slreq.Justification オブジェクトとして指定します。

正当化のプロパティの名前。

例: 'SID', 'CreatedOn', 'Summary'

正当化のプロパティの値。

例: 'Test Justification', 'J4.5.4'

正当化の属性の設定

% Load a requirement set file and get the handle to one justification 
rs = slreq.load('C:\MATLAB\My_Requirements_Set_1.slreqx');
jt1 = find(rs, 'Type', 'Justification', 'ID', 'J2.1');

% Set the Summary of req1
setAttribute(jt1, 'Summary', 'Controller Requirement Justification');

jt1

jt1 = 

  Justification with properties:

              Id: 'J2.1'
         Summary: 'Controller Requirement Justification'
     Description: ''
        Keywords: [0×0 char]
       Rationale: ''
       CreatedOn: 27-Feb-2014 10:15:38
       CreatedBy: 'Jane Doe'       
      ModifiedBy: 'John Doe'
             SID: 37
    FileRevision: 25
      ModifiedOn: 02-Aug-2017 13:49:40
           Dirty: 1
        Comments: [0×0 struct]

バージョン履歴

R2018b で導入