updateAttribute
Class: slreq.ReqSet
Namespace: slreq
Update information for requirement set custom attribute
Syntax
updateAttribute(rs,atrb,Name,Value)
Description
updateAttribute(
updates the custom attribute specified by rs
,atrb
,Name,Value
)atrb
with properties specified
by the name-value pairs Name
and Value
in the
requirement set rs
.
Input Arguments
Requirement set, specified as an slreq.ReqSet
object.
Custom attribute name, specified as a character array.
Name-Value Arguments
Specify optional pairs of arguments as
Name1=Value1,...,NameN=ValueN
, where Name
is
the argument name and Value
is the corresponding value.
Name-value arguments must appear after other arguments, but the order of the
pairs does not matter.
Before R2021a, use commas to separate each name and value, and enclose
Name
in quotes.
Example: 'Description','My new
description.'
Custom attribute description, specified as the comma-separated pair consisting of
'Description'
and a character array.
Example: 'Description','My new description.'
Combobox
list options, specified as the comma-separated pair
consisting of 'List'
and a cell array. The list of options is
valid only if 'Unset'
is the first entry.
'Unset'
indicates that the user hasn't chosen an option from
the combo box. If the list does not start with 'Unset'
, it will be
automatically appended as the first entry.
Example: 'List',{'Unset','A','B','C'}
Note
You can only use this name-value pair when the Type
property of the custom attribute that you're updating is
Combobox
.
Examples
This example shows how to update custom attribute information for a requirement set.
Load crs_req_func_spec
, which describes a cruise control system. Find a requirement set in the files and assign it to a variable.
slreq.load('crs_req_func_spec'); rs = slreq.find('Type','ReqSet');
Update an Edit
Custom Attribute
Add an Edit
custom attribute that has a description to the requirement set. Get the attribute information with inspectAttribute
.
addAttribute(rs,'MyEditAttribute','Edit','Description','Original attribute.') inspectAttribute(rs,'MyEditAttribute')
ans = struct with fields:
name: 'MyEditAttribute'
type: Edit
description: 'Original attribute.'
Update the custom attribute with a new description. Confirm the change by getting the attribute information with inspectAttribute
.
updateAttribute(rs,'MyEditAttribute','Description','Updated attribute.') inspectAttribute(rs,'MyEditAttribute')
ans = struct with fields:
name: 'MyEditAttribute'
type: Edit
description: 'Updated attribute.'
Update a Combobox
Custom Attribute
Add a Combobox
custom attribute that has a list of options to the requirement set. Get the attribute information with inspectAttribute
.
addAttribute(rs,'MyCombobox','Combobox','List',{'Unset','A','B','C'}) inspectAttribute(rs,'MyCombobox')
ans = struct with fields:
name: 'MyCombobox'
type: Combobox
description: ''
list: {'Unset' 'A' 'B' 'C'}
Update the custom attribute with a new list of options. Confirm the change by getting the attribute information with inspectAttribute
.
updateAttribute(rs,'MyCombobox','List',{'Unset','1','2','3'}) inspectAttribute(rs,'MyCombobox')
ans = struct with fields:
name: 'MyCombobox'
type: Combobox
description: ''
list: {'Unset' '1' '2' '3'}
Update the custom attribute with a new list of options and a new description. Confirm the change by getting the attribute information with inspectAttribute
.
updateAttribute(rs,'MyCombobox','List',{'Unset','A1','B2','B3'},'Description',... 'Updated attribute with new options.') inspectAttribute(rs,'MyCombobox')
ans = struct with fields:
name: 'MyCombobox'
type: Combobox
description: 'Updated attribute with new options.'
list: {'Unset' 'A1' 'B2' 'B3'}
Version History
Introduced in R2020b
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Web サイトの選択
Web サイトを選択すると、翻訳されたコンテンツにアクセスし、地域のイベントやサービスを確認できます。現在の位置情報に基づき、次のサイトの選択を推奨します:
また、以下のリストから Web サイトを選択することもできます。
最適なサイトパフォーマンスの取得方法
中国のサイト (中国語または英語) を選択することで、最適なサイトパフォーマンスが得られます。その他の国の MathWorks のサイトは、お客様の地域からのアクセスが最適化されていません。
南北アメリカ
- América Latina (Español)
- Canada (English)
- United States (English)
ヨーロッパ
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)