Utility Functions : List of Utility Functions : stm_list_extraction_by_chart

stm_list_extraction_by_chart
Extracts the elements from the input list that belong to the specified chart.
Function Type
stm_list
Syntax
stm_list_extraction_by_chart (chart_name, list, &status)
Arguments
Input/Output
The list of Rational Statemate elements.
Status Codes
Example
To extract a list of all Rational Statemate elements that belong to the Statechart S8 from the input list elem_list, use the following statements:

stm_list elem_list,S8_elements;
.
.
S8_elements = stm_list_extraction_by_chart ("S8",
elem_list, &status);
.
.