Main Content

getAttribute

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

正当化の属性の取得

構文

val = getAttribute(jt, propertyName)

説明

val = getAttribute(jt, propertyName) は、正当化 jt の正当化プロパティ propertyName を取得します。

入力引数

すべて展開する

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

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

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

正当化の属性の取得

% 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', 'J3.5');

% Get the Summary of jt1
summaryJt1 = getAttribute(jt1, 'Summary')

summaryJt1 = 

  'Requirement Justification'

バージョン履歴

R2018b で導入